結果

問題 No.2768 Password Crack
ユーザー hitonanodehitonanode
提出日時 2024-06-21 00:46:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 666 ms / 2,000 ms
コード長 506 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 61,640 KB
平均クエリ数 812.03
最終ジャッジ日時 2024-06-21 00:46:32
合計ジャッジ時間 21,214 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 551 ms
60,908 KB
testcase_01 AC 570 ms
61,640 KB
testcase_02 AC 590 ms
60,656 KB
testcase_03 AC 552 ms
61,084 KB
testcase_04 AC 600 ms
60,548 KB
testcase_05 AC 549 ms
61,052 KB
testcase_06 AC 573 ms
60,800 KB
testcase_07 AC 582 ms
60,672 KB
testcase_08 AC 555 ms
60,924 KB
testcase_09 AC 666 ms
61,024 KB
testcase_10 AC 641 ms
61,312 KB
testcase_11 AC 622 ms
60,668 KB
testcase_12 AC 601 ms
61,056 KB
testcase_13 AC 628 ms
61,180 KB
testcase_14 AC 601 ms
61,308 KB
testcase_15 AC 619 ms
60,408 KB
testcase_16 AC 590 ms
61,312 KB
testcase_17 AC 621 ms
60,540 KB
testcase_18 AC 590 ms
61,180 KB
testcase_19 AC 602 ms
61,080 KB
testcase_20 AC 566 ms
60,932 KB
testcase_21 AC 625 ms
61,188 KB
testcase_22 AC 577 ms
61,304 KB
testcase_23 AC 580 ms
60,544 KB
testcase_24 AC 565 ms
60,540 KB
testcase_25 AC 622 ms
60,924 KB
testcase_26 AC 568 ms
60,800 KB
testcase_27 AC 605 ms
60,796 KB
testcase_28 AC 550 ms
61,180 KB
testcase_29 AC 593 ms
60,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

np.random.seed(998998)

def query(s: list[str]) -> int:
    print('?', ''.join(s))
    return int(input())

N = int(input())

ret = ['a'] * N

ff = query(['a'] * N)

for idx in range(N):
    qs = list(range(1, 26))
    np.random.shuffle(qs)

    for d in qs:
        tmp = ['a'] * N
        tmp[idx] = chr(ord('a') + d)
        q = query(tmp)
        if q > ff:
            ret[idx] = chr(ord('a') + d)
            break
        elif q < ff:
            break

print('!', ''.join(ret))
0