Submission #509856

#TimeUsernameProblemLanguageResultExecution timeMemory
509856SalamaFootball (info1cup20_football)C++14
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; int main () { int z; cin >>z; while(z--){ long long q,d;long long s=0,t=0,x=0; cin >> q>>d; for(long long z2=0;z2<q;z2++) { long long q2; cin >> q2;   if(q2>=d ) { while(q2>=d){if(x==0) {s+=d; q2-=d; x=4; } else { t+=d; q2-=d; x=0;} } if(q2>0){if(x==0)s+=q2,q2=0,x=4; else t+=q2,q2=0,x=0; }} else { if(x==0) s+=q2,q2=0,x=4; else t+=q2,q2=0,x=0; }} if(s>t)cout<<1; else cout<<0; } }

Compilation message (stderr)

football.cpp:6:136: error: extended character   is not valid in an identifier
    6 | int z; cin >>z; while(z--){ long long q,d;long long s=0,t=0,x=0; cin >> q>>d; for(long long z2=0;z2<q;z2++) { long long q2; cin >> q2;  
      |                                                                                                                                        ^
football.cpp: In function 'int main()':
football.cpp:6:136: error: '\U000000a0' was not declared in this scope
    6 | int z; cin >>z; while(z--){ long long q,d;long long s=0,t=0,x=0; cin >> q>>d; for(long long z2=0;z2<q;z2++) { long long q2; cin >> q2;  
      |                                                                                                                                        ^
football.cpp:9:1: error: 'else' without a previous 'if'
    9 | else { if(x==0) s+=q2,q2=0,x=4; else t+=q2,q2=0,x=0; }} if(s>t)cout<<1; else cout<<0;  } }
      | ^~~~