結果

問題 No.2768 Password Crack
ユーザー flippergoflippergo
提出日時 2024-11-10 18:49:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 343 bytes
コンパイル時間 418 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 93,376 KB
平均クエリ数 941.77
最終ジャッジ日時 2024-11-10 18:50:05
合計ジャッジ時間 6,020 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
69,448 KB
testcase_01 AC 53 ms
69,080 KB
testcase_02 AC 149 ms
93,092 KB
testcase_03 AC 148 ms
93,052 KB
testcase_04 AC 150 ms
92,560 KB
testcase_05 AC 64 ms
69,336 KB
testcase_06 AC 148 ms
93,360 KB
testcase_07 AC 146 ms
92,980 KB
testcase_08 AC 75 ms
76,760 KB
testcase_09 AC 148 ms
92,504 KB
testcase_10 AC 152 ms
92,424 KB
testcase_11 AC 147 ms
93,140 KB
testcase_12 AC 149 ms
92,372 KB
testcase_13 AC 146 ms
92,584 KB
testcase_14 AC 150 ms
92,560 KB
testcase_15 AC 147 ms
92,848 KB
testcase_16 AC 147 ms
93,252 KB
testcase_17 AC 145 ms
93,204 KB
testcase_18 AC 147 ms
93,328 KB
testcase_19 AC 99 ms
81,664 KB
testcase_20 AC 96 ms
80,856 KB
testcase_21 AC 145 ms
93,376 KB
testcase_22 AC 118 ms
86,360 KB
testcase_23 AC 67 ms
70,616 KB
testcase_24 AC 90 ms
80,592 KB
testcase_25 AC 142 ms
93,016 KB
testcase_26 AC 91 ms
80,472 KB
testcase_27 AC 123 ms
86,232 KB
testcase_28 AC 71 ms
75,736 KB
testcase_29 AC 79 ms
76,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = [0]*N
for i in range(97,123,2):
    a = chr(i)
    b = chr(i+1)
    T = a*N
    print("?",T)
    na = int(input())
    for j in range(N):
        T1 = T[:j]+b+T[j+1:]
        print("?",T1)
        nb = int(input())
        if nb==na+1:
            S[j] = b
        elif nb==na-1:
            S[j] = a
print("!","".join(S))
0