//ej jak ktos z znajomych patrzy na moj kod po zakonczeniu potyczek to mam dla ciebie informacje //you just lost the game <3333 #include <algorithm> #include <iostream> #include <vector> using namespace std; int main() { ios::sync_with_stdio(0); cin.tie(0); int z; cin>>z; int n=z/10; int res=0; while(z){ bool is_pkt=1; for(int i=0; i<n; i++){ char x; cin>>x; if(x=='N') is_pkt=0; z--; } res+=is_pkt; } cout<<res; return 0; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | //ej jak ktos z znajomych patrzy na moj kod po zakonczeniu potyczek to mam dla ciebie informacje //you just lost the game <3333 #include <algorithm> #include <iostream> #include <vector> using namespace std; int main() { ios::sync_with_stdio(0); cin.tie(0); int z; cin>>z; int n=z/10; int res=0; while(z){ bool is_pkt=1; for(int i=0; i<n; i++){ char x; cin>>x; if(x=='N') is_pkt=0; z--; } res+=is_pkt; } cout<<res; return 0; } |