結果

問題 No.2768 Password Crack
ユーザー rlangevinrlangevin
提出日時 2024-05-31 21:47:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 269 ms / 2,000 ms
コード長 405 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 93,868 KB
平均クエリ数 1785.17
最終ジャッジ日時 2024-12-20 23:05:08
合計ジャッジ時間 7,985 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
70,832 KB
testcase_01 AC 68 ms
69,064 KB
testcase_02 AC 221 ms
92,728 KB
testcase_03 AC 224 ms
92,752 KB
testcase_04 AC 223 ms
92,964 KB
testcase_05 AC 87 ms
70,224 KB
testcase_06 AC 225 ms
93,228 KB
testcase_07 AC 225 ms
93,076 KB
testcase_08 AC 112 ms
79,444 KB
testcase_09 AC 259 ms
92,804 KB
testcase_10 AC 269 ms
93,868 KB
testcase_11 AC 227 ms
93,140 KB
testcase_12 AC 237 ms
92,504 KB
testcase_13 AC 255 ms
93,268 KB
testcase_14 AC 228 ms
93,160 KB
testcase_15 AC 231 ms
93,256 KB
testcase_16 AC 229 ms
92,936 KB
testcase_17 AC 232 ms
93,316 KB
testcase_18 AC 250 ms
92,936 KB
testcase_19 AC 169 ms
91,364 KB
testcase_20 AC 165 ms
90,956 KB
testcase_21 AC 234 ms
92,564 KB
testcase_22 AC 198 ms
93,292 KB
testcase_23 AC 98 ms
78,056 KB
testcase_24 AC 139 ms
83,568 KB
testcase_25 AC 223 ms
93,020 KB
testcase_26 AC 144 ms
84,880 KB
testcase_27 AC 205 ms
93,100 KB
testcase_28 AC 100 ms
78,416 KB
testcase_29 AC 118 ms
79,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def query(T):
    T = "".join(T)
    print("? {}".format(T))
    return int(input())

N = int(input())
L = ["z"] * N
ans = ["! "]
for i in range(N):
    D = [0] * 25
    for j in range(25):
        L[i] = chr(j + ord("a"))
        D[j] = query(L)
    ma = max(D)
    if D.count(ma) == 1:
        ans.append(chr(ord("a") + D.index(ma)))
    else:
        ans.append("z")
    L[i] = "z"

print(*ans, sep="")
0