이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include <grader.h>
using namespace std;
void play() {
int candy = 0;
vector<int> seen(50, -1);
for (int i = 0; i < 50; ++i) seen[i] = faceup(i + 1);
for (int i = 0; i < 50; ++i) {
if (seen[i] == -1) continue;
for (int j = i + 1; j < 50; ++j) {
if (seen[i] == seen[j]) {
faceup(i + 1);
faceup(j + 1);
candy++;
seen[j] = -1;
if (candy == 25) return;
break;
}
}
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |