제출 #1207293

#제출 시각아이디문제언어결과실행 시간메모리
1207293adriines06Memory (IOI10_memory)C++20
0 / 100
0 ms408 KiB
#include "grader.h" #include "memory.h" #include <bits/stdc++.h> using namespace std; void play() { char a, b; unordered_map <int,bool> mp; for (int i=1; i<51; i++) { if(mp[i]==true){ continue; } for (int j=i+1; j<51; j++) { a = faceup(i); b = faceup(j); if(a==b){ cout<<a<<b<<j<<"\n"; mp[j]=true; j=52; } } } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...