結果

問題 No.2768 Password Crack
ユーザー ra5anchorra5anchor
提出日時 2024-06-04 04:53:14
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 518 bytes
コンパイル時間 576 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 94,040 KB
平均クエリ数 888.83
最終ジャッジ日時 2024-06-04 04:53:22
合計ジャッジ時間 6,797 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
69,064 KB
testcase_01 AC 59 ms
68,440 KB
testcase_02 RE -
testcase_03 AC 60 ms
68,568 KB
testcase_04 AC 185 ms
92,888 KB
testcase_05 AC 69 ms
69,592 KB
testcase_06 AC 170 ms
92,888 KB
testcase_07 AC 70 ms
69,976 KB
testcase_08 AC 78 ms
70,488 KB
testcase_09 AC 164 ms
92,888 KB
testcase_10 AC 177 ms
92,760 KB
testcase_11 AC 187 ms
92,792 KB
testcase_12 AC 168 ms
92,632 KB
testcase_13 AC 170 ms
92,632 KB
testcase_14 AC 161 ms
92,248 KB
testcase_15 AC 135 ms
84,824 KB
testcase_16 AC 160 ms
92,888 KB
testcase_17 AC 180 ms
92,984 KB
testcase_18 AC 166 ms
92,632 KB
testcase_19 AC 104 ms
78,168 KB
testcase_20 AC 97 ms
77,528 KB
testcase_21 AC 173 ms
94,040 KB
testcase_22 AC 133 ms
84,184 KB
testcase_23 AC 76 ms
70,360 KB
testcase_24 AC 100 ms
77,528 KB
testcase_25 AC 194 ms
92,784 KB
testcase_26 AC 101 ms
77,528 KB
testcase_27 AC 134 ms
84,312 KB
testcase_28 AC 79 ms
71,000 KB
testcase_29 AC 82 ms
71,512 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):
    for j in range(25):
        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:
            Mmx = M
            break
        elif M < Mmx:
            T = T[:i] + 'a' + T[i+1:]
            break

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