ログイン
新規登録
AtsuoCoder Waseda Tour Finals 2025
読込中…
Home
Tasks
Clar
Submissions
Standings
提出 61d7a700-af33-45f7-8b59-3a144039d0bf
コード
#include <bits/stdc++.h> using namespace std; int main() { int N ,D; string A; cin >> N>>D; cin >>A; int count = 0; for (int i = 0; i < A.size(); i++) { if (A.at(i) >D) { count++; } else{ } endl; } cout << count << endl; }
結果
問題
点数
言語
結果
実行時間
メモリ
D - Deletion
0
C++
WJ
0 ms
0 KiB
コンパイルエラー
Main.cpp: In function 'int main()': Main.cpp:17:9: error: statement cannot resolve address of overloaded function 17 | endl; | ^