제출 #512473

#제출 시각아이디문제언어결과실행 시간메모리
512473600MihneaMemory (IOI10_memory)C++17
100 / 100
3 ms352 KiB
#include "grader.h"
#include "memory.h"

#include <bits/stdc++.h>

using namespace std;



void play() {
  map<char, vector<int>> w;
  for (int i = 1; i <= 50; i++) {
    w[faceup(i)].push_back(i);
  }
  for (auto &it : w) {
    for (auto &j : it.second) {
      faceup(j);
    }
  }
}
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…