제출 #147669

#제출 시각아이디문제언어결과실행 시간메모리
147669Cafe Maru (#201)Play Onwards (FXCUP4_onward)C++17
100 / 100
13 ms1116 KiB
#include "make.h"

std::string MakeWord(int N, int M, std::vector<std::string> Dict) {
  std::string word;
  for (int i = 0; i < M; i++) {
    word += 'a';
  }
  return word;
}
#include "guess.h"

std::string GuessWord(int M, std::string YH){
  std::string word;
  for (int i = 0; i < M; i++) {
    word += 'a';
  }
  return word;
}
#Verdict Execution timeMemoryGrader output
Fetching results...