結果

問題 No.2768 Password Crack
ユーザー i_takui_taku
提出日時 2024-06-01 20:37:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 216 ms / 2,000 ms
コード長 459 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 94,256 KB
平均クエリ数 1785.17
最終ジャッジ日時 2024-06-01 20:37:54
合計ジャッジ時間 6,984 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
72,280 KB
testcase_01 AC 59 ms
70,588 KB
testcase_02 AC 194 ms
93,548 KB
testcase_03 AC 204 ms
93,620 KB
testcase_04 AC 216 ms
93,540 KB
testcase_05 AC 75 ms
73,092 KB
testcase_06 AC 200 ms
93,704 KB
testcase_07 AC 194 ms
93,232 KB
testcase_08 AC 93 ms
81,016 KB
testcase_09 AC 192 ms
93,500 KB
testcase_10 AC 196 ms
93,396 KB
testcase_11 AC 207 ms
94,016 KB
testcase_12 AC 195 ms
93,868 KB
testcase_13 AC 192 ms
94,028 KB
testcase_14 AC 197 ms
93,652 KB
testcase_15 AC 194 ms
93,824 KB
testcase_16 AC 215 ms
93,528 KB
testcase_17 AC 204 ms
94,100 KB
testcase_18 AC 201 ms
93,732 KB
testcase_19 AC 153 ms
94,256 KB
testcase_20 AC 146 ms
93,720 KB
testcase_21 AC 216 ms
94,248 KB
testcase_22 AC 169 ms
94,040 KB
testcase_23 AC 83 ms
78,608 KB
testcase_24 AC 120 ms
85,700 KB
testcase_25 AC 190 ms
93,544 KB
testcase_26 AC 123 ms
86,192 KB
testcase_27 AC 181 ms
93,764 KB
testcase_28 AC 90 ms
78,776 KB
testcase_29 AC 110 ms
80,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N = int(input())
ans = ['z'] * N
T = ['z'] * N
rem = 2500
for i in range(N):
    cnt = defaultdict(list)
    for d in range(25):
        T[i] = chr(ord('a') + d)
        print(f"? {''.join(T)}", flush=True)
        n = int(input())
        cnt[n].append(T[i])
        rem -= 1
    if len(cnt) == 1:
        continue
    key = max(cnt.keys())
    ans[i] = cnt[key][0]
assert rem >= 0
print(f"! {''.join(ans)}", flush=True)
0