| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1359424 | panawatsk | Memory (IOI10_memory) | C++17 | 1 ms | 420 KiB |
#include <bits/stdc++.h>
#include "grader.h"
#include "memory.h"
using namespace std;
// cards 1 - 50
void play() {
// int i;
// char a, b;
// for (i=0; i<10; ++i) {
// a = faceup(42);
// b = faceup(47);
// }
map<char, vector<int>> c;
for (int i = 1; i <= 50; ++i) {
c[faceup(i)].push_back(i);
}
for (auto [key, vec] : c) {
for (int x : vec) {
faceup(x);
}
}
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
