Wrong Answer
Code
#include <iostream>
#include <string>
using namespace std;
int main() {
int T;
cin >> T;
while (T--) {
int N;
cin >> N;
string S;
cin >> S;
int max_count = 0, current_count = 0;
for (char c : S) {
if (c == '1') {
current_count++;
max_count = max(max_count, current_count);
} else {
current_count = 0;
}
}
cout << max_count << endl;
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1113 Fliping Game
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2024-11-06 14:11:38
- Judged At
- 2024-11-06 14:11:38
- Judged By
- Score
- 5
- Total Time
- 25ms
- Peak Memory
- 532.0 KiB