ログイン
新規登録
AtsuoCoder Waseda Tour Finals 2025
読込中…
Home
Tasks
Clar
Submissions
Standings
提出 223b8e06-fc17-47aa-b371-9c82bc34b0fb
コード
include <bits/stdc++.h> using namespace std; int main() { int N,D; string A; cin>>N>>D>>A; int sum=0; for(int i=0; i<N;i++){ if(A.at(i)<=D){ sum++; } } cout<<sum; }
結果
問題
点数
言語
結果
実行時間
メモリ
D - Deletion
0
C++
WJ
0 ms
0 KiB
コンパイルエラー
Main.cpp:1:10: error: 'bits' was not declared in this scope 1 | include <bits/stdc++.h> | ^~~~ Main.cpp:1:15: error: 'stdc' was not declared in this scope; did you mean 'std'? 1 | include <bits/stdc++.h> | ^~~~ | std Main.cpp:1:10: error: 'bits' was not declared in this scope 1 | include <bits/stdc++.h> | ^~~~ Main.cpp:1:15: error: 'stdc' was not declared in this scope; did you mean 'std'? 1 | include <bits/stdc++.h> | ^~~~ | std Main.cpp:1:10: error: 'bits' was not declared in this scope 1 | include <bits/stdc++.h> | ^~~~ Main.cpp:1:15: error: 'stdc' was not declared in this scope; did you mean 'std'? 1 | include <bits/stdc++.h> | ^~~~ | std Main.cpp:1:10: error: 'bits' was not declared in this scope 1 | include <bits/stdc++.h> | ^~~~ Main.cpp:1:15: error: 'stdc' was not declared in this scope; did you mean 'std'? 1 | include <bits/stdc++.h> | ^~~~ | std Main.cpp:1:10: error: 'bits' was not declared in this scope 1 | include <bits/stdc++.h> | ^~~~ Main.cpp:1:15: error: 'stdc' was not declared in this scope; did you mean 'std'? 1 | include <bits/stdc++.h> | ^~~~ | std Main.cpp:1:10: error: 'bits' was not declared in this scope 1 | include <bits/stdc++.h> | ^~~~ Main.cpp:1:15: error: 'stdc' was not declared in this scope; did you mean 'std'? 1 | include <bits/stdc++.h> | ^~~~ | std Main.cpp:1:10: error: 'bits' was not declared in this scope 1 | include <bits/stdc++.h> | ^~~~ Main.cpp:1:15: error: 'stdc' was not declared in this scope; did you mean 'std'? 1 | include <bits/stdc++.h> | ^~~~ | std Main.cpp:1:10: error: 'bits' was not declared in this scope 1 | include <bits/stdc++.h> | ^~~~ Main.cpp:1:15: error: 'stdc' was not declared in this scope; did you mean 'std'? 1 | include <bits/stdc++.h> | ^~~~ | std Main.cpp:1:10: error: 'bits' was not declared in this scope 1 | include <bits/stdc++.h> | ^~~~ Main.cpp:1:15: error: 'stdc' was not declared in this scope; did you mean 'std'? 1 | include <bits/stdc++.h> | ^~~~ | std Main.cpp:1:1: error: 'include' does not name a type 1 | include <bits/stdc++.h> | ^~~~~~~ Main.cpp: In function 'int main()': Main.cpp:6:5: error: 'string' was not declared in this scope 6 | string A; | ^~~~~~ Main.cpp:7:5: error: 'cin' was not declared in this scope 7 | cin>>N>>D>>A; | ^~~ Main.cpp:7:16: error: 'A' was not declared in this scope 7 | cin>>N>>D>>A; | ^ Main.cpp:14:4: error: 'cout' was not declared in this scope 14 | cout<<sum; | ^~~~