結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
70,884 KB
testcase_01 AC 61 ms
68,488 KB
testcase_02 RE -
testcase_03 AC 61 ms
70,728 KB
testcase_04 AC 182 ms
92,668 KB
testcase_05 AC 78 ms
75,480 KB
testcase_06 AC 168 ms
93,292 KB
testcase_07 AC 84 ms
78,272 KB
testcase_08 AC 91 ms
78,552 KB
testcase_09 AC 169 ms
93,528 KB
testcase_10 AC 178 ms
92,832 KB
testcase_11 AC 184 ms
93,196 KB
testcase_12 AC 184 ms
93,016 KB
testcase_13 AC 182 ms
93,424 KB
testcase_14 AC 176 ms
92,568 KB
testcase_15 AC 156 ms
92,880 KB
testcase_16 AC 187 ms
92,632 KB
testcase_17 AC 189 ms
93,276 KB
testcase_18 AC 183 ms
92,788 KB
testcase_19 AC 109 ms
82,648 KB
testcase_20 AC 103 ms
82,048 KB
testcase_21 AC 170 ms
93,404 KB
testcase_22 AC 146 ms
93,016 KB
testcase_23 AC 84 ms
76,888 KB
testcase_24 AC 115 ms
81,112 KB
testcase_25 AC 170 ms
93,144 KB
testcase_26 AC 104 ms
81,496 KB
testcase_27 AC 145 ms
92,248 KB
testcase_28 AC 88 ms
78,168 KB
testcase_29 AC 91 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;break
    if match==N:
        exit(print(f"! {password}"))
    i+=1
0