結果

問題 No.2768 Password Crack
ユーザー titiatitia
提出日時 2024-06-02 03:31:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 390 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,608 KB
平均クエリ数 1785.17
最終ジャッジ日時 2024-06-02 03:32:22
合計ジャッジ時間 5,919 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
26,952 KB
testcase_01 AC 47 ms
27,480 KB
testcase_02 AC 162 ms
27,480 KB
testcase_03 AC 139 ms
27,352 KB
testcase_04 AC 138 ms
27,224 KB
testcase_05 AC 58 ms
27,096 KB
testcase_06 AC 140 ms
27,480 KB
testcase_07 AC 143 ms
27,480 KB
testcase_08 AC 70 ms
27,224 KB
testcase_09 AC 141 ms
26,968 KB
testcase_10 AC 148 ms
27,480 KB
testcase_11 AC 139 ms
26,968 KB
testcase_12 AC 140 ms
27,096 KB
testcase_13 AC 141 ms
27,352 KB
testcase_14 AC 143 ms
27,224 KB
testcase_15 AC 142 ms
27,096 KB
testcase_16 AC 153 ms
27,224 KB
testcase_17 AC 142 ms
27,096 KB
testcase_18 AC 140 ms
27,064 KB
testcase_19 AC 94 ms
27,352 KB
testcase_20 AC 92 ms
27,224 KB
testcase_21 AC 137 ms
27,608 KB
testcase_22 AC 120 ms
27,096 KB
testcase_23 AC 66 ms
27,352 KB
testcase_24 AC 85 ms
27,384 KB
testcase_25 AC 139 ms
27,224 KB
testcase_26 AC 86 ms
27,096 KB
testcase_27 AC 121 ms
27,096 KB
testcase_28 AC 66 ms
27,352 KB
testcase_29 AC 74 ms
26,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())

X=["a"]*N

S="bcdefghijklmnopqrstuvwxyz"

for i in range(N):
    A=[]
    for j in range(25):
        X[i]=S[j]
        print("?","".join(X),flush=True)
        ret=int(input())
        A.append(ret)

    if min(A)==max(A):
        X[i]="a"
    else:
        mind=A.index(max(A))
        X[i]=S[mind]

print("!","".join(X),flush=True)
0