#include "make.h"
#include <bits/stdc++.h>
using namespace std;
std::string MakeWord(int N, int M, std::vector<std::string> Dict) {
string ans="";
string c=Dict[0];
for(int i=0;i<(int)c.length();i++){
if(c[i]=='z'){
ans+='b';
}
if(c[i]=='y'){
ans+='a';
}
else{
char d=(char)c[i]+2;
ans+=d;
}
}
return ans;
}
#include "guess.h"
#include <bits/stdc++.h>
using namespace std;
std::string GuessWord(int M, std::string YH){
string ans="";
string c=YH;
for(int i=0;i<(int)c.length();i++){
if(c[i]=='z'){
ans+='b';
}
if(c[i]=='y'){
ans+='a';
}
else{
char d=(char)c[i]+2;
ans+=d;
}
}
return ans;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
12 ms |
1044 KB |
Output isn't correct |
2 |
Correct |
12 ms |
1196 KB |
Output is correct |
3 |
Incorrect |
10 ms |
1084 KB |
Output isn't correct |
4 |
Correct |
11 ms |
1144 KB |
Output is correct |
5 |
Incorrect |
12 ms |
1036 KB |
Output isn't correct |
6 |
Incorrect |
12 ms |
1040 KB |
Output isn't correct |
7 |
Incorrect |
10 ms |
1036 KB |
Output isn't correct |
8 |
Incorrect |
10 ms |
1196 KB |
Output isn't correct |
9 |
Incorrect |
11 ms |
1188 KB |
Output isn't correct |
10 |
Incorrect |
11 ms |
972 KB |
Output isn't correct |
11 |
Incorrect |
12 ms |
972 KB |
Output isn't correct |
12 |
Incorrect |
11 ms |
1068 KB |
Output isn't correct |
13 |
Incorrect |
11 ms |
1044 KB |
Output isn't correct |
14 |
Incorrect |
10 ms |
1044 KB |
Output isn't correct |