Submission #879241

#TimeUsernameProblemLanguageResultExecution timeMemory
879241vjudge1Logičari (COCI21_logicari)C++17
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; typedef long long ll; const int N = 1e5 + 10, MOD = 998244353; // bool is[N]; // bool check(int n){ // for(int i = 0;i < (1 << n);i++){ // for(int j = 0;j < n;j++){ // if((i >> j) & 1){ // is[j + 1] = 0; // }else{ // is[j + 1] = 1; // } // } // bool ok = true; // for(int j = 1;j <= n;j++){ // int x; // if(j==1) x= (is[n] + is[2]); // else if(j == n) x = (is[1] + is[n - 1]); // else x = is[j - 1] + is[j + 1]; // if(x != 1) ok = 0; // if(!ok) break; // } // if(ok){ // for(int j = 0;j < n;j++) // { // // if((i >> j) & 1) cout << 0; // // else cout <<1; // } // // cout << '\n'; // return 1; // } // } // return 0; // } int n; void test(){ cin >> n; if(n % 4){ cout << -1; return; } cout << n / 2; } int main() { ios_base::sync_with_stdio(0); cin.tie(0); int T = 1; // cin >> T; for(int i = 1;i <= T;i++)s { test(); } }

Compilation message (stderr)

Main.cpp: In function 'int main()':
Main.cpp:52:30: error: 's' was not declared in this scope
   52 |     for(int i = 1;i <= T;i++)s
      |                              ^