結果

問題 No.2768 Password Crack
ユーザー sibasyunsibasyun
提出日時 2024-06-03 08:28:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 230 ms / 2,000 ms
コード長 429 bytes
コンパイル時間 566 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 93,784 KB
平均クエリ数 1785.17
最終ジャッジ日時 2024-06-03 08:28:23
合計ジャッジ時間 8,315 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
69,064 KB
testcase_01 AC 56 ms
68,568 KB
testcase_02 AC 222 ms
93,400 KB
testcase_03 AC 229 ms
93,776 KB
testcase_04 AC 206 ms
93,272 KB
testcase_05 AC 79 ms
75,480 KB
testcase_06 AC 206 ms
93,400 KB
testcase_07 AC 227 ms
93,656 KB
testcase_08 AC 106 ms
80,472 KB
testcase_09 AC 206 ms
93,272 KB
testcase_10 AC 223 ms
93,408 KB
testcase_11 AC 213 ms
93,656 KB
testcase_12 AC 223 ms
93,144 KB
testcase_13 AC 215 ms
93,272 KB
testcase_14 AC 213 ms
93,784 KB
testcase_15 AC 209 ms
93,784 KB
testcase_16 AC 204 ms
93,528 KB
testcase_17 AC 215 ms
93,776 KB
testcase_18 AC 210 ms
93,272 KB
testcase_19 AC 171 ms
93,016 KB
testcase_20 AC 184 ms
93,400 KB
testcase_21 AC 230 ms
93,144 KB
testcase_22 AC 194 ms
93,400 KB
testcase_23 AC 101 ms
77,016 KB
testcase_24 AC 134 ms
86,488 KB
testcase_25 AC 211 ms
93,272 KB
testcase_26 AC 160 ms
88,024 KB
testcase_27 AC 219 ms
93,008 KB
testcase_28 AC 91 ms
77,272 KB
testcase_29 AC 126 ms
80,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
X = "abcdefghijklmnopqrstuvwxy"
ans = ["?" for _ in range(n)]
for i in range(n):
	cnt = [0 for _ in range(25)]
	z = ["z" for _ in range(n)]
	for x in X:
		z[i] = x
		print("?", "".join(z), flush=True)
		m = int(input())
		cnt[ord(x) - ord("a")] = m
	cnts = set(cnt)
	if len(cnts) == 1:
		ans[i] = "z"
	else:
		max_cnt = max(cnt)
		idx = cnt.index(max_cnt)
		ans[i] = X[idx] 

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