結果

問題 No.2768 Password Crack
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2024-02-29 18:41:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 680 bytes
コンパイル時間 3,042 ms
コンパイル使用メモリ 201,788 KB
実行使用メモリ 25,220 KB
平均クエリ数 1786.17
最終ジャッジ日時 2024-12-17 12:38:50
合計ジャッジ時間 7,775 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
24,812 KB
testcase_01 AC 25 ms
25,220 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 35 ms
24,964 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 44 ms
24,580 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 64 ms
24,964 KB
testcase_20 AC 62 ms
24,964 KB
testcase_21 AC 96 ms
24,836 KB
testcase_22 AC 83 ms
24,836 KB
testcase_23 AC 38 ms
24,580 KB
testcase_24 AC 55 ms
24,964 KB
testcase_25 AC 95 ms
24,580 KB
testcase_26 AC 57 ms
24,836 KB
testcase_27 AC 83 ms
24,580 KB
testcase_28 AC 46 ms
24,580 KB
testcase_29 AC 46 ms
24,836 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<25; 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;
    }
    
    query(S);

    answer(S);

    return 0;
}
0