답안 #755845

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
755845 2023-06-10T16:44:14 Z vjudge1 Password (RMI18_password) C++17
0 / 100
4 ms 208 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';
        if(query(cur+c)==j){
            cur+=c;
            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 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 1 ms 208 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -