結果

問題 No.2768 Password Crack
ユーザー ra5anchorra5anchor
提出日時 2024-06-04 04:59:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 204 ms / 2,000 ms
コード長 652 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 93,688 KB
平均クエリ数 881.63
最終ジャッジ日時 2024-06-04 04:59:10
合計ジャッジ時間 6,631 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
69,064 KB
testcase_01 AC 60 ms
67,928 KB
testcase_02 AC 204 ms
92,248 KB
testcase_03 AC 73 ms
68,952 KB
testcase_04 AC 164 ms
92,504 KB
testcase_05 AC 73 ms
70,104 KB
testcase_06 AC 158 ms
92,632 KB
testcase_07 AC 71 ms
69,720 KB
testcase_08 AC 81 ms
71,000 KB
testcase_09 AC 165 ms
92,504 KB
testcase_10 AC 170 ms
93,016 KB
testcase_11 AC 173 ms
93,272 KB
testcase_12 AC 167 ms
93,016 KB
testcase_13 AC 168 ms
92,760 KB
testcase_14 AC 164 ms
93,272 KB
testcase_15 AC 141 ms
84,952 KB
testcase_16 AC 163 ms
92,504 KB
testcase_17 AC 171 ms
93,272 KB
testcase_18 AC 164 ms
92,504 KB
testcase_19 AC 104 ms
78,424 KB
testcase_20 AC 96 ms
77,400 KB
testcase_21 AC 172 ms
93,688 KB
testcase_22 AC 129 ms
84,056 KB
testcase_23 AC 75 ms
70,104 KB
testcase_24 AC 105 ms
78,040 KB
testcase_25 AC 163 ms
92,376 KB
testcase_26 AC 97 ms
77,656 KB
testcase_27 AC 132 ms
84,312 KB
testcase_28 AC 78 ms
70,872 KB
testcase_29 AC 86 ms
71,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

T = 'a' * N
print(f'? {T}')
M = int(input())
if M == N:
    print(f'! {T}')
    exit()
Mmx = M

s = 'abcdefghijklmnopqrstuvwxyz'
for i in range(N):
    ok = False
    for j in range(24):
        c = s[j+1]
        T = T[:i] + c + T[i+1:]
        print(f'? {T}')
        M = int(input())
        if M == N:
            print(f'! {T}')
            exit()
        elif M > Mmx:
            ok = True
            Mmx = M
            break
        elif M < Mmx:
            ok = True
            T = T[:i] + 'a' + T[i+1:]
            break
    if ok == False:
        T = T = T[:i] + 'z' + T[i+1:]
        Mmx += 1

print(f'! {T}')
exit()
0