# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
899328 | AdamGS | 코알라 (APIO17_koala) | C++17 | 63 ms | 600 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "koala.h"
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
#define rep(a, b) for(int a = 0; a < (b); ++a)
#define st first
#define nd second
#define pb push_back
#define all(a) a.begin(), a.end()
int minValue(int N, int W) {
int P[N], T[N];
rep(i, N) P[i]=0;
P[0]=1;
playRound(P, T);
rep(i, N) if(P[i]>=T[i]) return i;
return 0;
}
int maxValue(int N, int W) {
int P[N], T[N];
vector<int>V(N);
rep(i, N) V[i]=0;
int ans=-1;
while(true) {
int ile=N;
rep(i, N) if(V[i]) --ile;
if(ile==1) {
rep(i, N) if(!V[i]) ans=i;
break;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |