# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
892969 | LCJLY | Memory (IOI10_memory) | C++14 | 0 ms | 0 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "grader.h"
#include "memory.h"
#include <bits/stdc++.h>
using namespace std;
void play() {
vector<int>storage[30];
for(int x=1;x<=50;x++){
int temp=faceup(x)-'A';
storage[temp].push_back(x);
}
for(int x=0;x<25;x++){
for(auto it:storage[x]){
int a=faceup(it)-'A';
}
}