# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
858074 | 2023-10-07T11:40:00 Z | iulia_morariu | Brperm (RMI20_brperm) | C++17 | 3000 ms | 2044 KB |
#include <bits/stdc++.h> #include <brperm.h> using namespace std; string v; void init ( int n, const char s[] ){ for(int i = 0; i < n; i++) v.push_back( s[i] ); } int transform(int nr, int k){ vector <int> b; while(nr > 0){ b.push_back(nr % 2); nr /= 2; } while(b.size() < k) b.push_back(0); int p = 1; for(int i = b.size() - 1; i >= 0; i--){ nr += p * b[i]; p *= 2; } return nr; } int query ( int it , int k ){ int p = pow(2, k); for(int i = it; i < it + p; i++){ int x = transform( i, k ); //cout << "i = " << i << " x = " << x << endl; if( v[x] != v[i] ) return 0; } return 1; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 1 ms | 604 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 1 ms | 604 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Execution timed out | 3052 ms | 2044 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 1 ms | 604 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |