제출 #1313043

#제출 시각아이디문제언어결과실행 시간메모리
1313043shirokito게임 (IOI14_game)C++20
0 / 100
1 ms380 KiB
#include <bits/stdc++.h> using namespace std; #define all(a) (a).begin(), (a).end() using ll = long long; mt19937_64 rng(36363636); int x; void initialize(int n) { x = rng() % n + 1; } int hasEdge(int u, int v) { return (u == x || v == x); } #ifdef LOCAL void solve() { } signed main() { cin.tie(0) -> sync_with_stdio(0); int T = 1; cin >> T; while (T--) { solve(); } } #endif
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...