Submission #709074

#TimeUsernameProblemLanguageResultExecution timeMemory
709074kxdPassword (RMI18_password)C++17
Compilation error
0 ms0 KiB
int tot[26]; int ans[5000]; string guess(int n, int m) { forn(i,m) { string s (n,char('a'+i)); tot[i] = query(s); } forn(i,m) { forn(j,tot[i]) { int ret = 0; forn(k,m) { if(k==i) continue; string s (j,'a'+i); string s2 (n-j,'a'+k); int t = query(s+s2); if(!t) break; ret += t; } ans[ret] = i; } } string s; forn(i,n) { s = s + (char)(ans[i]+'a'); } return s; }

Compilation message (stderr)

password.cpp:4:1: error: 'string' does not name a type
    4 | string guess(int n, int m) {
      | ^~~~~~