# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
464381 | 2021-08-13T06:14:58 Z | fuad27 | Password (RMI18_password) | C++14 | 0 ms | 0 KB |
#include"password.cpp" #include<bits/stdc++.h> using namespace std; string guess(int n, int s) { string ans = ""; for(int i = 0;i<s;i++) { ans+=char(i+'a'); } do { if(query(ans.substr(0, n)) == n)return ans.substr(0, n); }while(next_permutation(ans.begin(), ans.end())); return ""; }