結果

問題 No.2768 Password Crack
ユーザー kokoseikokosei
提出日時 2024-06-01 14:23:08
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 768 bytes
コンパイル時間 1,021 ms
コンパイル使用メモリ 83,804 KB
実行使用メモリ 25,220 KB
平均クエリ数 955.37
最終ジャッジ日時 2024-06-01 14:23:13
合計ジャッジ時間 4,896 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
25,196 KB
testcase_01 AC 23 ms
24,964 KB
testcase_02 AC 97 ms
25,220 KB
testcase_03 AC 30 ms
24,964 KB
testcase_04 AC 65 ms
25,220 KB
testcase_05 AC 29 ms
24,836 KB
testcase_06 AC 64 ms
25,220 KB
testcase_07 AC 33 ms
24,568 KB
testcase_08 AC 34 ms
24,964 KB
testcase_09 AC 64 ms
24,580 KB
testcase_10 AC 72 ms
24,580 KB
testcase_11 AC 67 ms
24,904 KB
testcase_12 AC 69 ms
24,836 KB
testcase_13 AC 69 ms
24,836 KB
testcase_14 AC 65 ms
24,824 KB
testcase_15 AC 59 ms
24,836 KB
testcase_16 AC 63 ms
25,220 KB
testcase_17 AC 64 ms
24,836 KB
testcase_18 AC 65 ms
24,836 KB
testcase_19 AC 46 ms
25,220 KB
testcase_20 AC 46 ms
24,836 KB
testcase_21 AC 63 ms
25,220 KB
testcase_22 AC 60 ms
25,220 KB
testcase_23 AC 32 ms
25,076 KB
testcase_24 AC 43 ms
25,220 KB
testcase_25 AC 79 ms
24,964 KB
testcase_26 AC 43 ms
24,836 KB
testcase_27 AC 61 ms
25,220 KB
testcase_28 AC 35 ms
25,220 KB
testcase_29 AC 40 ms
24,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
using ll = long long;

int N;
int main(void){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    
    cin >> N;
    string ans(N, 'z');
    for(int i = 0;i < N;i++){
        int base;
        cout << "? " << string(i, 'z') << "a" << string(N - 1 - i, 'z') << endl;
        cin >> base;
        for(char c = 'b';c < 'z';c++){
            string s = string(i, 'z') + c + string(N - 1 - i, 'z');
            cout << "? " << s << endl;
            int x; cin >> x;
            if(base == x + 1){
                ans[i] = 'a';
                break;
            }
            if(x == base + 1){
                ans[i] = c;
                break;
            }
        }
    }
    cout << "! " << ans << endl;
    return 0;
}
0