# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
530883 | qwerasdfzxcl | Broken Device (JOI17_broken_device) | C++14 | 44 ms | 2652 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "Annalib.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
void Anna( int N, long long X, int K, int P[] ){
bool chk[150] = {0};
for (int i=0;i<K;i++) chk[P[i]] = 1;
for (int i=0;i<150;i+=2){
if (chk[i] || chk[i+1]) {Set(i, 0); Set(i+1, 0);}
else {
if (X%3==0) {Set(i, 0); Set(i+1, 1);}
else if (X%3==1) {Set(i, 1); Set(i+1, 0);}
else {Set(i, 1); Set(i+1, 1);}
X /= 3;
}
}
}
#include "Brunolib.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
long long Bruno( int N, int A[] ){
ll ans = 0;
for (int i=148;i>=0;i-=2){
if (!A[i] && !A[i+1]) continue;
ans *= 3;
if (A[i]==0 && A[i+1]==1) ans += 0;
else if (A[i]==1 && A[i+1]==0) ans += 1;
else ans += 2;
}
return ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |