답안 #487106

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
487106 2021-11-14T10:16:40 Z Karuk Password (RMI18_password) C++17
0 / 100
364 ms 200 KB
#include<bits/stdc++.h>
using namespace std;
int query(string str);
string guess(int n , int k)
{
    string s;
    for(int i=0;i<n;i++)
    {
        s+='a';
    }
    while(1)
    {
        for(int i=0;i<n;i++)
        {
            if(s[i]==k+'a'-1)s[i]='a';
            else {s[i]++;i=n+1;}
        }
        int x=query(s);
        if(x==n)return s;
    }
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 364 ms 200 KB Could not guess the password with 50000 queries.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 290 ms 200 KB Could not guess the password with 50000 queries.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 292 ms 200 KB Could not guess the password with 50000 queries.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 364 ms 200 KB Could not guess the password with 50000 queries.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 364 ms 200 KB Could not guess the password with 50000 queries.
2 Halted 0 ms 0 KB -