結果

問題 No.2768 Password Crack
ユーザー GOTKAKOGOTKAKO
提出日時 2024-05-31 21:41:54
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 762 bytes
コンパイル時間 2,402 ms
コンパイル使用メモリ 201,432 KB
実行使用メモリ 25,220 KB
平均クエリ数 885.00
最終ジャッジ日時 2024-12-20 22:56:43
合計ジャッジ時間 5,744 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    int N; cin >> N;
    string s(N,'a');
    int S;
    cout << "? " << s << endl;
    cin >> S;
    string answer = "";
    for(int i=0; i<N; i++){
        bool add = false;
        for(char c='b'; c<='y'; c++){
            s.at(i) = c;
            cout << "? " << s << endl;
            int now; cin >> now;
            if(S == now+1){
                add = true;
                answer += 'a'; break;
            }
            if(now == S+1){
                add = true;
                answer += c; break;
            }
        }
        if(add == false) answer += 'z';
        s.at(i) = 'a';
    }
    cout << "! " << answer << endl;
}
0