結果

問題 No.2768 Password Crack
ユーザー tkykwtnbtkykwtnb
提出日時 2024-05-31 23:03:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 230 ms / 2,000 ms
コード長 806 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 81,960 KB
実行使用メモリ 93,456 KB
平均クエリ数 881.63
最終ジャッジ日時 2024-12-21 01:17:38
合計ジャッジ時間 6,841 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
69,448 KB
testcase_01 AC 64 ms
68,696 KB
testcase_02 AC 230 ms
92,880 KB
testcase_03 AC 66 ms
68,696 KB
testcase_04 AC 181 ms
93,144 KB
testcase_05 AC 81 ms
75,760 KB
testcase_06 AC 184 ms
93,016 KB
testcase_07 AC 85 ms
77,144 KB
testcase_08 AC 95 ms
78,536 KB
testcase_09 AC 186 ms
93,272 KB
testcase_10 AC 193 ms
93,024 KB
testcase_11 AC 181 ms
92,888 KB
testcase_12 AC 190 ms
93,400 KB
testcase_13 AC 193 ms
93,096 KB
testcase_14 AC 184 ms
93,456 KB
testcase_15 AC 162 ms
92,120 KB
testcase_16 AC 189 ms
93,232 KB
testcase_17 AC 186 ms
92,908 KB
testcase_18 AC 185 ms
92,700 KB
testcase_19 AC 117 ms
82,032 KB
testcase_20 AC 112 ms
80,984 KB
testcase_21 AC 187 ms
93,400 KB
testcase_22 AC 161 ms
90,456 KB
testcase_23 AC 90 ms
76,580 KB
testcase_24 AC 114 ms
80,728 KB
testcase_25 AC 179 ms
92,632 KB
testcase_26 AC 114 ms
80,600 KB
testcase_27 AC 156 ms
91,192 KB
testcase_28 AC 93 ms
77,656 KB
testcase_29 AC 100 ms
78,424 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
phrase=get_password(ans)
print(f"? {phrase}")
match=int(input())
if match==N:
    exit(print(f"! {phrase}"))
while 1:
    # matchが減るなら一つ前が正解。変わらないなら繰り返す。増えたらそれが正解。
    while ans[i]<25:
        pre=match
        ans[i]+=1
        phrase=get_password(ans)
        if ans[i]==25:
            match+=1
            break
        print(f"? {phrase}")
        match=int(input())
        if match>pre:break
        elif match<pre:
            ans[i]-=1
            phrase=get_password(ans)
            match+=1
            break
    if match==N:
        exit(print(f"! {phrase}"))
    i+=1
0