# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
755887 | 2023-06-10T17:21:02 Z | vjudge1 | Password (RMI18_password) | C++17 | 291 ms | 284 KB |
///YOU WILL MAKE IT #include<bits/stdc++.h> using namespace std; int query(string s); string guess(int n,int s){ string cur=""; map<char,int> mp; for(int i=0;i<s;i++){ string cur=""; cur+=('a'+i); for(int j=1;j<=n;j++){ if(query(cur)==j){ mp[(i+'a')]++; cur+=(i+'a'); } } } string ans=""; for(auto i:mp){ for(int j=0;j<i.second;j++){ for(int k=0;k<=ans.size();k++){ string temp=ans; temp.insert(temp.begin()+j,i.first); // cout<<temp<<endl; if(query(temp)==temp.size()){ ans=temp; break; } } } } return ans; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 208 KB | Returned early from guess() after 265 queries. |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 4 ms | 208 KB | Returned early from guess() after 347 queries. |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 291 ms | 284 KB | Could not guess the password with 50000 queries. |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 208 KB | Returned early from guess() after 265 queries. |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 208 KB | Returned early from guess() after 265 queries. |
2 | Halted | 0 ms | 0 KB | - |