結果

問題 No.2768 Password Crack
ユーザー kusaf_kusaf_
提出日時 2024-06-04 01:16:29
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 635 bytes
コンパイル時間 2,846 ms
コンパイル使用メモリ 245,332 KB
実行使用メモリ 25,476 KB
平均クエリ数 885.00
最終ジャッジ日時 2024-06-04 01:16:36
合計ジャッジ時間 6,439 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
25,196 KB
testcase_01 AC 22 ms
24,836 KB
testcase_02 AC 89 ms
24,580 KB
testcase_03 AC 24 ms
25,220 KB
testcase_04 AC 59 ms
24,964 KB
testcase_05 AC 27 ms
24,836 KB
testcase_06 AC 57 ms
24,836 KB
testcase_07 AC 25 ms
25,476 KB
testcase_08 AC 31 ms
24,836 KB
testcase_09 AC 59 ms
24,836 KB
testcase_10 AC 62 ms
25,220 KB
testcase_11 AC 58 ms
25,220 KB
testcase_12 AC 60 ms
24,964 KB
testcase_13 AC 59 ms
24,964 KB
testcase_14 AC 58 ms
24,836 KB
testcase_15 AC 55 ms
24,836 KB
testcase_16 AC 56 ms
24,580 KB
testcase_17 AC 57 ms
24,580 KB
testcase_18 AC 55 ms
25,220 KB
testcase_19 AC 39 ms
24,836 KB
testcase_20 AC 37 ms
24,964 KB
testcase_21 AC 54 ms
25,220 KB
testcase_22 AC 50 ms
24,964 KB
testcase_23 AC 34 ms
24,580 KB
testcase_24 AC 37 ms
25,220 KB
testcase_25 AC 56 ms
24,964 KB
testcase_26 AC 39 ms
25,348 KB
testcase_27 AC 52 ms
24,580 KB
testcase_28 AC 30 ms
24,580 KB
testcase_29 AC 32 ms
24,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

  ll N;
  cin >> N;

  auto ask = [&](string &s) {
    cout << "? " << s << endl;
    ll x;
    cin >> x;
    return x;
  };

  string S(N, 'a'), ans = "";
  ll c = ask(S);
  for(ll i = 0; i < N; i++) {
    for(char j = 'b'; j < 'z'; j++) {
      S[i] = j;
      ll t = ask(S);
      if(t < c) {
        ans += 'a';
        break;
      }
      if(t > c) {
        ans += j;
        break;
      }
    }
    if(ans.size() != i + 1) { ans += 'z'; }
    S[i] = 'a';
  }

  cout << "! " << ans << "\n";
}
0