結果

問題 No.2768 Password Crack
ユーザー tkykwtnbtkykwtnb
提出日時 2024-05-31 22:03:41
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 629 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 93,988 KB
平均クエリ数 134.03
最終ジャッジ日時 2024-05-31 22:03:49
合計ジャッジ時間 4,922 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
69,940 KB
testcase_01 AC 56 ms
68,516 KB
testcase_02 RE -
testcase_03 AC 59 ms
69,344 KB
testcase_04 RE -
testcase_05 AC 72 ms
76,616 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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