結果

問題 No.2768 Password Crack
ユーザー naut3naut3
提出日時 2024-06-01 02:19:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 578 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 28,248 KB
平均クエリ数 1014.80
最終ジャッジ日時 2024-06-01 02:19:11
合計ジャッジ時間 9,460 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
28,008 KB
testcase_01 AC 57 ms
27,848 KB
testcase_02 AC 169 ms
27,864 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 78 ms
27,992 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 69 ms
27,224 KB
testcase_24 AC 93 ms
27,864 KB
testcase_25 WA -
testcase_26 AC 104 ms
27,992 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import random


def main():
    alphas = [chr(ord('a') + i) for i in range(26)]
    ans = []

    N = int(input())

    for i in range(N):
        random.shuffle(alphas)

        T = ['a' for _ in range(N)]
        counts_max = None

        for x in alphas:
            T[i] = x

            print("? ", *T, sep="", flush=True)
            c = int(input())

            if counts_max is None:
                counts_max = c
            else:
                if counts_max < c:
                    ans.append(x)
                    break

    print("! ", *ans, sep='')


main()
0