結果

問題 No.2768 Password Crack
ユーザー shimonohnishishimonohnishi
提出日時 2024-06-10 10:59:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 411 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 93,536 KB
平均クエリ数 1151.63
最終ジャッジ日時 2024-06-10 10:59:26
合計ジャッジ時間 5,963 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
70,200 KB
testcase_01 AC 53 ms
69,452 KB
testcase_02 AC 177 ms
92,976 KB
testcase_03 AC 187 ms
92,504 KB
testcase_04 AC 144 ms
92,972 KB
testcase_05 AC 64 ms
71,048 KB
testcase_06 AC 176 ms
93,160 KB
testcase_07 AC 118 ms
84,196 KB
testcase_08 AC 72 ms
71,520 KB
testcase_09 AC 156 ms
92,804 KB
testcase_10 AC 150 ms
92,524 KB
testcase_11 AC 145 ms
92,948 KB
testcase_12 AC 150 ms
93,084 KB
testcase_13 AC 144 ms
93,224 KB
testcase_14 AC 140 ms
93,144 KB
testcase_15 AC 138 ms
92,628 KB
testcase_16 AC 168 ms
93,004 KB
testcase_17 AC 147 ms
92,860 KB
testcase_18 AC 146 ms
93,536 KB
testcase_19 AC 95 ms
79,440 KB
testcase_20 AC 94 ms
79,728 KB
testcase_21 AC 141 ms
92,916 KB
testcase_22 AC 122 ms
85,344 KB
testcase_23 AC 72 ms
70,992 KB
testcase_24 AC 91 ms
78,984 KB
testcase_25 AC 141 ms
93,000 KB
testcase_26 AC 85 ms
80,072 KB
testcase_27 AC 133 ms
91,000 KB
testcase_28 AC 70 ms
70,812 KB
testcase_29 AC 79 ms
77,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())

def ans(a):
    print(f'! {a}')

def get(a):
    print(f'? {a}')
    k=int(input())
    return k

now=['a']*N
for i in range(N):
    first=get(''.join(now))
    for k in range(1,25):
        now[i]=chr(ord('a')+k)
        res=get(''.join(now))
        if res>first:
            break
    else:
        if first==res:
            now[i]='z'
        else:
            now[i]='a'

ans(''.join(now))
0