結果

問題 No.2768 Password Crack
ユーザー tkykwtnbtkykwtnb
提出日時 2024-05-31 22:18:16
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 730 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 93,528 KB
平均クエリ数 948.73
最終ジャッジ日時 2024-05-31 22:18:23
合計ジャッジ時間 6,921 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
69,320 KB
testcase_01 AC 64 ms
68,824 KB
testcase_02 RE -
testcase_03 AC 64 ms
68,568 KB
testcase_04 AC 173 ms
93,152 KB
testcase_05 AC 79 ms
76,120 KB
testcase_06 AC 173 ms
93,016 KB
testcase_07 AC 89 ms
78,424 KB
testcase_08 AC 95 ms
78,624 KB
testcase_09 AC 174 ms
93,308 KB
testcase_10 AC 189 ms
93,400 KB
testcase_11 AC 174 ms
93,016 KB
testcase_12 AC 192 ms
93,400 KB
testcase_13 AC 184 ms
93,528 KB
testcase_14 AC 177 ms
93,144 KB
testcase_15 AC 171 ms
91,992 KB
testcase_16 AC 174 ms
93,084 KB
testcase_17 AC 175 ms
92,880 KB
testcase_18 AC 174 ms
93,420 KB
testcase_19 AC 111 ms
82,904 KB
testcase_20 AC 107 ms
81,744 KB
testcase_21 AC 186 ms
92,760 KB
testcase_22 AC 151 ms
92,880 KB
testcase_23 AC 85 ms
76,632 KB
testcase_24 AC 111 ms
81,496 KB
testcase_25 AC 174 ms
93,396 KB
testcase_26 AC 106 ms
81,752 KB
testcase_27 AC 145 ms
92,448 KB
testcase_28 AC 90 ms
78,168 KB
testcase_29 AC 95 ms
79,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def get_password(ans):
    ret=[]
    for c in ans:
        ret.append(chr(c+ord("a")))
    return "".join(ret)
N=int(input())
ans=[0 for _ in range(N)]
i=0
while 1:
    password=get_password(ans)
    print(f"? {password}")
    match=int(input())
    if match==N:
        exit(print(f"! {password}"))
    # matchが減るなら一つ前が正解。変わらないなら繰り返す。増えたらそれが正解。
    while ans[i]<25:
        pre=match
        ans[i]+=1
        if ans[i]==25:break
        password=get_password(ans)
        print(f"? {password}")
        match=int(input())
        if match>pre:break
        elif match<pre:ans[i]-=1;match+=1;break
    if match==N:
        exit(print(f"! {password}"))
    i+=1
0