답안 #755856

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
755856 2023-06-10T16:53:49 Z vjudge1 Password (RMI18_password) C++17
0 / 100
4 ms 300 KB
///YOU WILL MAKE IT
#include<bits/stdc++.h>
using namespace std;
int query(string s);
string guess(int n,int s){
    string cur="";
    for(int j=1;j<=n;j++){
     for(int i=0;i<=s;i++){
        char c=i+'a';
        string temp=cur;
        temp+=c;
        if(query(temp)==j){
            //cout<<cur<<endl;
            cur=temp;
            break;
        }
     }
    }
    return cur;
}
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 208 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 208 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 4 ms 300 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 208 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 208 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -