結果

問題 No.2768 Password Crack
ユーザー 👑 rin204rin204
提出日時 2024-07-07 15:59:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 239 ms / 2,000 ms
コード長 411 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 81,816 KB
実行使用メモリ 94,300 KB
平均クエリ数 1785.17
最終ジャッジ日時 2024-07-07 15:59:11
合計ジャッジ時間 7,988 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
68,776 KB
testcase_01 AC 58 ms
69,464 KB
testcase_02 AC 239 ms
92,708 KB
testcase_03 AC 213 ms
93,496 KB
testcase_04 AC 205 ms
92,616 KB
testcase_05 AC 76 ms
75,984 KB
testcase_06 AC 208 ms
92,616 KB
testcase_07 AC 212 ms
94,300 KB
testcase_08 AC 114 ms
81,136 KB
testcase_09 AC 218 ms
93,344 KB
testcase_10 AC 207 ms
92,760 KB
testcase_11 AC 204 ms
93,076 KB
testcase_12 AC 218 ms
93,092 KB
testcase_13 AC 206 ms
92,548 KB
testcase_14 AC 214 ms
92,916 KB
testcase_15 AC 214 ms
92,568 KB
testcase_16 AC 212 ms
93,200 KB
testcase_17 AC 210 ms
93,264 KB
testcase_18 AC 210 ms
92,996 KB
testcase_19 AC 163 ms
92,936 KB
testcase_20 AC 162 ms
92,884 KB
testcase_21 AC 216 ms
93,336 KB
testcase_22 AC 193 ms
93,224 KB
testcase_23 AC 95 ms
77,476 KB
testcase_24 AC 135 ms
85,720 KB
testcase_25 AC 209 ms
92,580 KB
testcase_26 AC 138 ms
86,596 KB
testcase_27 AC 187 ms
92,924 KB
testcase_28 AC 92 ms
77,656 KB
testcase_29 AC 110 ms
81,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
S = ["a"] * n
for i in range(1, n + 1):
    mi = 1 << 30
    ma = -1
    ss = "z"
    for j in range(25):
        s = chr(97 + j)
        S[i - 1] = s
        print("?", "".join(S), flush=True)
        res = int(input())
        mi = min(mi, res)
        if res > ma:
            ma = max(ma, res)
            ss = s

    if mi == ma:
        ss = "z"
    S[i - 1] = ss

print("!", "".join(S))
0