結果

問題 No.2768 Password Crack
ユーザー naut3naut3
提出日時 2024-06-01 02:20:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 176 ms / 2,000 ms
コード長 747 bytes
コンパイル時間 113 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 28,248 KB
平均クエリ数 939.60
最終ジャッジ日時 2024-06-01 02:20:59
合計ジャッジ時間 6,131 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
27,848 KB
testcase_01 AC 58 ms
27,864 KB
testcase_02 AC 160 ms
27,608 KB
testcase_03 AC 165 ms
27,608 KB
testcase_04 AC 164 ms
27,480 KB
testcase_05 AC 65 ms
27,480 KB
testcase_06 AC 165 ms
27,992 KB
testcase_07 AC 167 ms
28,120 KB
testcase_08 AC 78 ms
27,608 KB
testcase_09 AC 159 ms
27,864 KB
testcase_10 AC 165 ms
27,992 KB
testcase_11 AC 166 ms
27,224 KB
testcase_12 AC 168 ms
27,864 KB
testcase_13 AC 169 ms
27,608 KB
testcase_14 AC 172 ms
27,608 KB
testcase_15 AC 171 ms
27,736 KB
testcase_16 AC 176 ms
27,608 KB
testcase_17 AC 168 ms
27,992 KB
testcase_18 AC 164 ms
27,992 KB
testcase_19 AC 103 ms
27,992 KB
testcase_20 AC 97 ms
27,992 KB
testcase_21 AC 162 ms
27,352 KB
testcase_22 AC 141 ms
27,992 KB
testcase_23 AC 68 ms
27,864 KB
testcase_24 AC 89 ms
27,992 KB
testcase_25 AC 163 ms
27,992 KB
testcase_26 AC 87 ms
28,248 KB
testcase_27 AC 135 ms
27,608 KB
testcase_28 AC 71 ms
28,120 KB
testcase_29 AC 79 ms
27,608 KB
権限があれば一括ダウンロードができます

ソースコード

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
        max_char = None

        for x in alphas:
            T[i] = x

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

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

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


main()
0