Submission #61169075
Source Code Expand
Copy
#include <bits/stdc++.h>using namespace std;#define ll long long intint main(){string s;cin>>s;ll count=0;for(ll i=0;i<s.size()-1;i++){if(s[i]=='0'&&s[i+1]=='0'){count++;i=i+1;}}cout<<s.size()-count;//cout<<count;}
#include <bits/stdc++.h> using namespace std; #define ll long long int int main(){ string s; cin>>s; ll count=0; for(ll i=0;i<s.size()-1;i++){ if(s[i]=='0'&&s[i+1]=='0'){ count++; i=i+1; } } cout<<s.size()-count; //cout<<count; }
Submission Info
Submission Time | |
---|---|
Task | B - Calculator |
User | turna_majumder |
Language | C++ 20 (gcc 12.2) |
Score | 200 |
Code Size | 308 Byte |
Status | AC |
Exec Time | 1 ms |
Memory | 3676 KB |
Compile Error
Main.cpp: In function ‘int main()’: Main.cpp:8:17: warning: comparison of integer expressions of different signedness: ‘long long int’ and ‘std::__cxx11::basic_string<char>::size_type’ {aka ‘long unsigned int’} [-Wsign-compare] 8 | for(ll i=0;i<s.size()-1;i++){ | ~^~~~~~~~~~~
Judge Result
Set Name | Sample | All | ||||
---|---|---|---|---|---|---|
Score / Max Score | 0 / 0 | 200 / 200 | ||||
Status |
|
|
Set Name | Test Cases |
---|---|
Sample | sample_01.txt, sample_02.txt, sample_03.txt |
All | sample_01.txt, sample_02.txt, sample_03.txt, test_01.txt, test_02.txt, test_03.txt, test_04.txt, test_05.txt, test_06.txt, test_07.txt, test_08.txt, test_09.txt, test_10.txt, test_11.txt, test_12.txt, test_13.txt, test_14.txt, test_15.txt, test_16.txt |
Case Name | Status | Exec Time | Memory |
---|---|---|---|
sample_01.txt | AC | 1 ms | 3596 KB |
sample_02.txt | AC | 1 ms | 3464 KB |
sample_03.txt | AC | 1 ms | 3508 KB |
test_01.txt | AC | 1 ms | 3676 KB |
test_02.txt | AC | 1 ms | 3476 KB |
test_03.txt | AC | 1 ms | 3436 KB |
test_04.txt | AC | 1 ms | 3528 KB |
test_05.txt | AC | 1 ms | 3536 KB |
test_06.txt | AC | 1 ms | 3552 KB |
test_07.txt | AC | 1 ms | 3476 KB |
test_08.txt | AC | 1 ms | 3604 KB |
test_09.txt | AC | 1 ms | 3604 KB |
test_10.txt | AC | 1 ms | 3540 KB |
test_11.txt | AC | 1 ms | 3536 KB |
test_12.txt | AC | 1 ms | 3540 KB |
test_13.txt | AC | 1 ms | 3472 KB |
test_14.txt | AC | 1 ms | 3404 KB |
test_15.txt | AC | 1 ms | 3676 KB |
test_16.txt | AC | 1 ms | 3444 KB |