#include "Annalib.h"
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
static const ll K = 626237348924392349LL;
static int radi[1005];
static int ord[] = {129, 130, 126, 98, 96, 136, 122, 82, 86, 102, 18, 124, 32, 40, 71, 51, 91, 108, 94, 17, 113, 47, 64, 66, 65, 7, 131, 76, 138, 99, 77, 81, 54, 35, 56, 39, 25, 3, 87, 101, 61, 68, 14, 112, 24, 107, 97, 19, 104, 59, 75, 33, 21, 145, 78, 15, 120, 140, 36, 44, 83, 38, 46, 103, 84, 95, 57, 22, 37, 23, 70, 149, 31, 148, 121, 110, 11, 2, 100, 42, 30, 52, 72, 53, 67, 29, 132, 139, 144, 146, 45, 26, 93, 147, 135, 80, 116, 114, 49, 4, 88, 16, 90, 127, 20, 143, 85, 55, 41, 123, 92, 10, 13, 105, 63, 58, 0, 60, 109, 34, 50, 141, 115, 117, 134, 28, 9, 118, 48, 1, 12, 6, 142, 119, 62, 128, 27, 133, 5, 43, 137, 73, 106, 8, 74, 125, 69, 111, 79, 89};
void Anna(int _n, long long X, int _k, int P[] ){
int n = _n;
int k = _k;
for(int i=0; i<n; i++) radi[i] = 1;
for(int i=0; i<k; i++) radi[P[i]] = 0;
if(k > 38){
for(int i=0; i<n; i++) Set(i, 1);
return;
}
X ^= K;
int j = 0;
for(int i=0; i<38; i++){
int treba = X%3;
X /= 3;
treba++;
for(;;){
if(treba/2 <= radi[ord[j]] && treba%2 <= radi[ord[j+1]]){
Set(ord[j], treba/2);
Set(ord[j+1], treba%2);
j += 2;
break;
}
Set(ord[j], 0);
Set(ord[j+1], 0);
j += 2;
}
}
while(j < n){
Set(ord[j], 0);
j++;
}
}
#include "Brunolib.h"
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
static const ll K = 626237348924392349LL;
static int ord[] = {129, 130, 126, 98, 96, 136, 122, 82, 86, 102, 18, 124, 32, 40, 71, 51, 91, 108, 94, 17, 113, 47, 64, 66, 65, 7, 131, 76, 138, 99, 77, 81, 54, 35, 56, 39, 25, 3, 87, 101, 61, 68, 14, 112, 24, 107, 97, 19, 104, 59, 75, 33, 21, 145, 78, 15, 120, 140, 36, 44, 83, 38, 46, 103, 84, 95, 57, 22, 37, 23, 70, 149, 31, 148, 121, 110, 11, 2, 100, 42, 30, 52, 72, 53, 67, 29, 132, 139, 144, 146, 45, 26, 93, 147, 135, 80, 116, 114, 49, 4, 88, 16, 90, 127, 20, 143, 85, 55, 41, 123, 92, 10, 13, 105, 63, 58, 0, 60, 109, 34, 50, 141, 115, 117, 134, 28, 9, 118, 48, 1, 12, 6, 142, 119, 62, 128, 27, 133, 5, 43, 137, 73, 106, 8, 74, 125, 69, 111, 79, 89};
long long Bruno( int N, int A[] ){
int j = 0;
ll p3 = 1;
ll res = 0;
for(int i=0; i<38; i++){
int tr;
for(;;){
tr = 2*A[ord[j]] + A[ord[j+1]];
j++;
if(tr) break;
}
res += (tr-1)*p3;
p3 *= 3;
}
return res ^ K;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Partially correct |
40 ms |
2332 KB |
Output isn't correct - L* = 0 |
2 |
Partially correct |
38 ms |
2236 KB |
Output isn't correct - L* = 0 |
3 |
Partially correct |
37 ms |
2336 KB |
Output isn't correct - L* = 0 |
4 |
Partially correct |
37 ms |
2308 KB |
Output isn't correct - L* = 0 |
5 |
Partially correct |
36 ms |
2204 KB |
Output isn't correct - L* = 0 |
6 |
Partially correct |
37 ms |
2376 KB |
Output isn't correct - L* = 0 |
7 |
Partially correct |
36 ms |
2416 KB |
Output isn't correct - L* = 0 |
8 |
Partially correct |
41 ms |
2252 KB |
Output isn't correct - L* = 0 |
9 |
Partially correct |
36 ms |
2196 KB |
Output isn't correct - L* = 0 |
10 |
Partially correct |
41 ms |
2296 KB |
Output isn't correct - L* = 0 |
11 |
Partially correct |
38 ms |
2284 KB |
Output isn't correct - L* = 0 |
12 |
Partially correct |
37 ms |
2260 KB |
Output isn't correct - L* = 0 |
13 |
Partially correct |
39 ms |
2296 KB |
Output isn't correct - L* = 0 |
14 |
Partially correct |
39 ms |
2212 KB |
Output isn't correct - L* = 0 |
15 |
Partially correct |
38 ms |
2316 KB |
Output isn't correct - L* = 0 |
16 |
Partially correct |
44 ms |
2268 KB |
Output isn't correct - L* = 0 |
17 |
Partially correct |
38 ms |
2304 KB |
Output isn't correct - L* = 0 |
18 |
Partially correct |
37 ms |
2280 KB |
Output isn't correct - L* = 0 |
19 |
Partially correct |
38 ms |
2388 KB |
Output isn't correct - L* = 0 |
20 |
Partially correct |
38 ms |
2192 KB |
Output isn't correct - L* = 0 |
21 |
Partially correct |
38 ms |
2308 KB |
Output isn't correct - L* = 0 |
22 |
Partially correct |
39 ms |
2196 KB |
Output isn't correct - L* = 0 |
23 |
Partially correct |
36 ms |
2220 KB |
Output isn't correct - L* = 0 |
24 |
Partially correct |
38 ms |
2204 KB |
Output isn't correct - L* = 0 |
25 |
Partially correct |
38 ms |
2284 KB |
Output isn't correct - L* = 0 |
26 |
Partially correct |
37 ms |
2268 KB |
Output isn't correct - L* = 0 |
27 |
Partially correct |
37 ms |
2244 KB |
Output isn't correct - L* = 0 |
28 |
Partially correct |
38 ms |
2208 KB |
Output isn't correct - L* = 0 |
29 |
Partially correct |
40 ms |
2344 KB |
Output isn't correct - L* = 0 |
30 |
Partially correct |
36 ms |
2340 KB |
Output isn't correct - L* = 0 |
31 |
Partially correct |
36 ms |
2308 KB |
Output isn't correct - L* = 0 |
32 |
Partially correct |
39 ms |
2360 KB |
Output isn't correct - L* = 0 |
33 |
Partially correct |
37 ms |
2272 KB |
Output isn't correct - L* = 0 |
34 |
Partially correct |
37 ms |
2228 KB |
Output isn't correct - L* = 0 |
35 |
Partially correct |
38 ms |
2292 KB |
Output isn't correct - L* = 0 |
36 |
Partially correct |
37 ms |
2344 KB |
Output isn't correct - L* = 0 |
37 |
Partially correct |
36 ms |
2516 KB |
Output isn't correct - L* = 0 |
38 |
Partially correct |
36 ms |
2304 KB |
Output isn't correct - L* = 0 |
39 |
Partially correct |
37 ms |
2204 KB |
Output isn't correct - L* = 0 |
40 |
Partially correct |
36 ms |
2316 KB |
Output isn't correct - L* = 0 |