#include "make.h"
std::string MakeWord(int N, int M, std::vector<std::string> Dict) {
std::string S;
while(M--) S+= 'a';
return S;
}
#include "guess.h"
std::string GuessWord(int M, std::string YH){
std::string S;
while(M--) S+= 'a';
return S;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
12 ms |
844 KB |
Output is correct |
2 |
Correct |
11 ms |
1052 KB |
Output is correct |
3 |
Correct |
10 ms |
1052 KB |
Output is correct |
4 |
Correct |
12 ms |
972 KB |
Output is correct |
5 |
Correct |
11 ms |
1172 KB |
Output is correct |
6 |
Correct |
10 ms |
1052 KB |
Output is correct |
7 |
Correct |
12 ms |
940 KB |
Output is correct |
8 |
Correct |
12 ms |
956 KB |
Output is correct |
9 |
Correct |
11 ms |
972 KB |
Output is correct |
10 |
Correct |
11 ms |
1052 KB |
Output is correct |
11 |
Correct |
12 ms |
1028 KB |
Output is correct |
12 |
Correct |
11 ms |
924 KB |
Output is correct |
13 |
Correct |
11 ms |
968 KB |
Output is correct |
14 |
Correct |
12 ms |
1164 KB |
Output is correct |