結果

問題 No.2768 Password Crack
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-06-01 04:09:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 239 ms / 2,000 ms
コード長 231 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 94,224 KB
平均クエリ数 1785.17
最終ジャッジ日時 2024-06-01 04:09:17
合計ジャッジ時間 8,094 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
74,348 KB
testcase_01 AC 62 ms
69,972 KB
testcase_02 AC 225 ms
94,048 KB
testcase_03 AC 219 ms
93,968 KB
testcase_04 AC 226 ms
94,060 KB
testcase_05 AC 83 ms
78,460 KB
testcase_06 AC 220 ms
93,264 KB
testcase_07 AC 215 ms
93,312 KB
testcase_08 AC 115 ms
83,044 KB
testcase_09 AC 217 ms
93,724 KB
testcase_10 AC 239 ms
93,660 KB
testcase_11 AC 217 ms
93,292 KB
testcase_12 AC 217 ms
93,632 KB
testcase_13 AC 217 ms
93,200 KB
testcase_14 AC 217 ms
93,456 KB
testcase_15 AC 221 ms
93,960 KB
testcase_16 AC 215 ms
93,452 KB
testcase_17 AC 215 ms
93,508 KB
testcase_18 AC 215 ms
93,432 KB
testcase_19 AC 175 ms
93,812 KB
testcase_20 AC 164 ms
93,476 KB
testcase_21 AC 213 ms
93,372 KB
testcase_22 AC 196 ms
93,716 KB
testcase_23 AC 97 ms
79,196 KB
testcase_24 AC 138 ms
88,244 KB
testcase_25 AC 221 ms
94,024 KB
testcase_26 AC 143 ms
87,364 KB
testcase_27 AC 192 ms
94,224 KB
testcase_28 AC 96 ms
79,576 KB
testcase_29 AC 111 ms
83,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
s=""
for i in range(n):
	g=[]
	for j in range(25):
		print("?","a"*i+chr(j+ord("a"))+"a"*(n-i-1))
		g+=[int(input())]
	g+=[min(g)+1]
	for j in range(26):
		if g[j]==max(g):
			s+=chr(j+ord("a"))
			break
print("!",s)
0