# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1202103 | PlayVoltz | Memory (IOI10_memory) | C++20 | 0 ms | 0 KiB |
#include "grader.h"
#include "memory.h"
#include <bits/stdc++.h>
using namespace std;
void play(){
map<char, vector<int> > m;
for (int i=1; i<=50; ++i)m[faceup(i)].pb(i);
for (auto [b, a]:m)faceup(a[0]), faceup(a[1]);
}