# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
421382 | 2021-06-09T06:07:40 Z | Andyvanh1 | Data Transfer (IOI19_transfer) | C++14 | 6 ms | 2424 KB |
#include <bits/stdc++.h> #include "transfer.h" using namespace std; #define vt vector #define INF 0x3f3f3f3f #define pb push_back #define all(x) (x).begin(),(x).end() #define rep(i,x) for(int (i) = 0;(i) < (x); (i)++) #define MOD 1000000007 typedef vt<int> vi; typedef long long ll; typedef long double ld; typedef pair<int,int> pii; vi get_attachment(vi source){ vi ans(7); int x = 0; int ct = 0; for(int i = 1; i <= 63; i++){ x^=i*(source[i-1]); } for(int i = 0; i < 6; i++){ ans[i] = ((1<<i)&x ? 1 : 0); if(ans[i])ct++; } ans[6] = ct&1; return ans; } vi retrieve(vi data){ vi ans1(63); vi ans2(6); int ans3; for(int i = 0; i < 63; i++){ ans1[i] = data[i]; } for(int i = 63; i < 69; i++){ ans2[i-63] = data[i]; } ans3 = data[69]; int x = 0; int y = 0; int z = 0; int ct = 0; for(int i = 1; i <= 63; i++){ x^=i*(ans1[i-1]); } for(int i = 0; i < 6; i++){ y+=(1<<i)*ans2[i]; } if(x==y)return ans1; if(y&1!=ans3){ return ans1; }else{ ans1[x^y-1]^=1; return ans1; } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 4 ms | 620 KB | WA in grader: wrong source retrieval |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 6 ms | 2424 KB | WA in grader: wrong source retrieval |
2 | Halted | 0 ms | 0 KB | - |