結果

問題 No.2768 Password Crack
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-06-01 01:18:13
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 861 bytes
コンパイル時間 2,750 ms
コンパイル使用メモリ 206,108 KB
実行使用メモリ 25,476 KB
平均クエリ数 1785.17
最終ジャッジ日時 2024-12-21 03:06:45
合計ジャッジ時間 7,793 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    int n;
    cin >> n;
    vector<char> ans(n);
    for (int i = 0; i < n; i++) {
        vector<int> num;
        string ask = "";
        for (int j = 0; j < n; j++) {
            ask += "a";
        }
        for (char c = 'a'; c < 'z'; c++) {
            ask[i] = c;
            cout << "? " << ask << endl;
            int cnt;
            cin >> cnt;
            num.push_back(cnt);
        }
        int id = max_element(num.begin(), num.end()) - num.begin();
        bool same = true;
        for (int j = 0; j < (int)num.size() - 1; j++) {
            if (num[j] != num[j + 1]) {
                same = false;
            }
        }
        ans[i] = (same ? 'z' : (char)(id + 97));
    }
    cout << "! ";
    for (auto c : ans) {
        cout << c;
    }
    cout << endl;
    return 0;
}
0