제출 #255377

#제출 시각아이디문제언어결과실행 시간메모리
255377ScarletSCluedo (IOI10_cluedo)C++17
100 / 100
15 ms384 KiB
#include <bits/stdc++.h> #include "grader.h" #include "cluedo.h" #define ll long long #define sz(x) (int)(x).size() using namespace std; void Solve() { ios_base::sync_with_stdio(0); cin.tie(0); int a=1,b=1,c=1,d; while (1) { d=Theory(a,b,c); if (d==0) return; if (d==1) ++a; if (d==2) ++b; if (d==3) ++c; } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...