# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1097008 | Saul0906 | Broken Device (JOI17_broken_device) | C++14 | 41 ms | 3024 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "Annalib.h"
#include <vector>
using namespace std;
void Anna(int N, long long X, int K, int *P){
bool bloqueado[N]{};
for(int i=0; i<K; i++) bloqueado[P[i]]=true;
for(int i = 0; i < N; i+=2){
if(bloqueado[i] || bloqueado[i+1]){
Set(i,0);
Set(i+1,0);
continue;
}
if(X&1) Set(i,1), Set(i+1,1);
else Set(i,1), Set(i+1,0);
X/=2;
}
}
#include "Brunolib.h"
#include <vector>
using namespace std;
long long Bruno( int N, int *A){
long long x=0, c=1;
for(int i=0; i<N; i+=2){
if(!A[i]) continue;
if(A[i+1]) x+=c;
c*=2;
}
return x;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |