# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
530480 | byunjaewoo | Broken Device (JOI17_broken_device) | C++17 | 36 ms | 2428 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "Annalib.h"
#include <bits/stdc++.h>
using namespace std;
bool chk[155];
void Anna( int N, long long X, int K, int P[] ){
for(int i=0; i<K; i++) chk[P[i]]=true;
vector<int> V;
while(X) {
V.push_back(X%2);
X/=2;
}
for(int i=0, p=0; i<150; i+=2) {
if(chk[i] || chk[i+1] || p>=V.size()) {
Set(i, 0); Set(i+1, 0); continue;
}
if(V[p]==0) {
Set(i, 1); Set(i+1, 1);
}
else {
Set(i, 1); Set(i+1, 0);
}
}
}
#include <bits/stdc++.h>
using namespace std;
#include "Brunolib.h"
long long Bruno( int N, int A[] ){
long long x=0;
for(int i=N-1; i>=0; i-=2) {
if(!A[i] && !A[i-1]) continue;
x*=2; x+=(A[i]^A[i-1]);
}
return x;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |