結果

問題 No.2768 Password Crack
ユーザー aa
提出日時 2024-05-31 22:36:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 236 ms / 2,000 ms
コード長 392 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 93,372 KB
平均クエリ数 1785.17
最終ジャッジ日時 2024-05-31 22:37:00
合計ジャッジ時間 7,683 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
70,544 KB
testcase_01 AC 64 ms
70,608 KB
testcase_02 AC 204 ms
92,872 KB
testcase_03 AC 229 ms
92,676 KB
testcase_04 AC 202 ms
93,104 KB
testcase_05 AC 79 ms
71,176 KB
testcase_06 AC 207 ms
92,584 KB
testcase_07 AC 204 ms
93,016 KB
testcase_08 AC 103 ms
78,844 KB
testcase_09 AC 236 ms
92,752 KB
testcase_10 AC 205 ms
93,212 KB
testcase_11 AC 205 ms
93,000 KB
testcase_12 AC 204 ms
93,196 KB
testcase_13 AC 205 ms
93,172 KB
testcase_14 AC 228 ms
92,576 KB
testcase_15 AC 206 ms
92,536 KB
testcase_16 AC 205 ms
92,948 KB
testcase_17 AC 206 ms
93,124 KB
testcase_18 AC 204 ms
92,816 KB
testcase_19 AC 181 ms
90,800 KB
testcase_20 AC 150 ms
90,872 KB
testcase_21 AC 206 ms
92,808 KB
testcase_22 AC 183 ms
93,012 KB
testcase_23 AC 92 ms
76,716 KB
testcase_24 AC 131 ms
85,700 KB
testcase_25 AC 201 ms
93,208 KB
testcase_26 AC 130 ms
84,916 KB
testcase_27 AC 187 ms
93,372 KB
testcase_28 AC 94 ms
78,460 KB
testcase_29 AC 107 ms
80,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
s=[]
for i in range(n):
    a=[]
    for j in range(25):
        t='a'*i+chr(ord('a')+j)+'a'*(n-i-1)
        print('? '+t,flush=True)
        a.append(int(input()))
    T=True
    for j in range(25):
        if a.count(a[j])==1:
            s.append(chr(ord('a')+j))
            T=False
            break 
    if T:
        s.append('z')
ans=''.join(map(str,s))
print('! '+ans)
0