結果

問題 No.2768 Password Crack
ユーザー 👑 rin204rin204
提出日時 2024-05-31 21:38:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 242 ms / 2,000 ms
コード長 411 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 93,720 KB
平均クエリ数 1785.17
最終ジャッジ日時 2024-12-20 22:48:50
合計ジャッジ時間 7,844 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
70,396 KB
testcase_01 AC 70 ms
68,432 KB
testcase_02 AC 223 ms
93,236 KB
testcase_03 AC 230 ms
93,588 KB
testcase_04 AC 223 ms
93,468 KB
testcase_05 AC 87 ms
76,960 KB
testcase_06 AC 229 ms
93,028 KB
testcase_07 AC 227 ms
93,072 KB
testcase_08 AC 115 ms
81,880 KB
testcase_09 AC 226 ms
93,456 KB
testcase_10 AC 227 ms
93,292 KB
testcase_11 AC 242 ms
93,444 KB
testcase_12 AC 229 ms
93,096 KB
testcase_13 AC 225 ms
93,300 KB
testcase_14 AC 225 ms
92,984 KB
testcase_15 AC 226 ms
93,068 KB
testcase_16 AC 228 ms
93,416 KB
testcase_17 AC 228 ms
93,376 KB
testcase_18 AC 228 ms
93,312 KB
testcase_19 AC 173 ms
93,176 KB
testcase_20 AC 170 ms
93,720 KB
testcase_21 AC 231 ms
93,472 KB
testcase_22 AC 234 ms
93,488 KB
testcase_23 AC 110 ms
76,948 KB
testcase_24 AC 161 ms
86,876 KB
testcase_25 AC 234 ms
93,356 KB
testcase_26 AC 148 ms
87,604 KB
testcase_27 AC 201 ms
92,896 KB
testcase_28 AC 100 ms
78,668 KB
testcase_29 AC 120 ms
82,964 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