# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
879241 | 2023-11-27T03:06:06 Z | vjudge1 | Logičari (COCI21_logicari) | C++17 | 0 ms | 0 KB |
#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(); } }