# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
873013 | 2023-11-14T09:57:35 Z | vjudge1 | Password (RMI18_password) | C++17 | 244 ms | 432 KB |
#include<bits/stdc++.h> using namespace std; int cnt[200]; int query(string q); string guess(int n, int s) { for(char c='a'; c<'a'+s; c++){ string s; for(int i=0; i<n; i++) s += c; cnt[c] = query(s); } string ans; for(int i=0; i<n; i++){ string t = ans; t += '#'; for(char c='a'; c<'a'+s; c++){ for(int j=1; j<=cnt[c]; j++){ t += c; } bool ok = 0; for(char d='a'; d<'a'+s; d++){ t[ans.size()] = d; if(query(t) == t.size()){ ok = 1; } } if(!ok){ ans[i] = c; cnt[c]--; break; } } } return ans; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 10 ms | 344 KB | Token "-1" doesn't correspond to pattern "[a-o]{1,15}" |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 0 ms | 432 KB | Execution killed with signal 13 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 244 ms | 344 KB | Could not guess the password with 50000 queries. |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 10 ms | 344 KB | Token "-1" doesn't correspond to pattern "[a-o]{1,15}" |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 10 ms | 344 KB | Token "-1" doesn't correspond to pattern "[a-o]{1,15}" |
2 | Halted | 0 ms | 0 KB | - |