Wrong Answer
Code
#include<bits/stdc++.h>
using namespace std;
#define ll long long
void solve()
{
int n; cin>>n;
string s; cin>>s;
int cnt=0;
for(int i=0; i<s.size(); i++){
if(s[i]=='1') cnt++;
}
cout<<cnt<<endl;
}
int main()
{
int t; cin>>t;
while(t--) solve();
}
Information
- Submit By
- Type
- Submission
- Problem
- P1113 Fliping Game
- Contest
- Brain Booster #7
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2024-11-05 14:43:56
- Judged At
- 2024-11-05 14:43:56
- Judged By
- Score
- 5
- Total Time
- 17ms
- Peak Memory
- 556.0 KiB