結果

問題 No.2768 Password Crack
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-12-12 19:47:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 661 bytes
コンパイル時間 2,126 ms
コンパイル使用メモリ 202,364 KB
実行使用メモリ 25,604 KB
平均クエリ数 1856.53
最終ジャッジ日時 2024-05-09 19:29:14
合計ジャッジ時間 7,587 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
25,184 KB
testcase_01 AC 18 ms
24,964 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 27 ms
24,580 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 37 ms
24,836 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 53 ms
24,836 KB
testcase_20 AC 51 ms
24,964 KB
testcase_21 WA -
testcase_22 AC 68 ms
25,220 KB
testcase_23 AC 31 ms
25,312 KB
testcase_24 AC 45 ms
24,964 KB
testcase_25 AC 82 ms
25,220 KB
testcase_26 AC 47 ms
25,220 KB
testcase_27 AC 69 ms
24,964 KB
testcase_28 AC 32 ms
25,472 KB
testcase_29 AC 37 ms
25,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

void query(string &S){
    cout << "? " << S << endl;
}
void answer(string &T){
    cout << "! " << T << endl;
}

int main(){

    int N, M;
    cin >> N;
    string S=string(N, 'a');
    for (int i=0; i<N; i++){
        int mi=1e9, mx=0;
        char c='.';
        for (int j=0; j<26; j++){
            S[i] = char('a'+j);
            query(S);
            cin >> M;
            if (M > mx){
                mx = M;
                c = char('a'+j);
            }
            mi = min(mi, M);
        }
        if (mi == mx) c = 'z';
        S[i] = c;
    }

    answer(S);

    return 0;
}
0