結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
75,220 KB
testcase_01 AC 58 ms
69,420 KB
testcase_02 AC 208 ms
93,688 KB
testcase_03 AC 210 ms
93,760 KB
testcase_04 AC 211 ms
93,408 KB
testcase_05 AC 81 ms
77,580 KB
testcase_06 AC 211 ms
93,260 KB
testcase_07 AC 211 ms
93,092 KB
testcase_08 AC 104 ms
83,636 KB
testcase_09 AC 210 ms
93,396 KB
testcase_10 AC 210 ms
93,628 KB
testcase_11 AC 213 ms
93,460 KB
testcase_12 AC 214 ms
93,604 KB
testcase_13 AC 210 ms
93,308 KB
testcase_14 AC 213 ms
93,496 KB
testcase_15 AC 211 ms
93,032 KB
testcase_16 AC 211 ms
93,420 KB
testcase_17 AC 213 ms
93,192 KB
testcase_18 AC 211 ms
92,840 KB
testcase_19 AC 160 ms
93,892 KB
testcase_20 AC 164 ms
93,208 KB
testcase_21 AC 210 ms
93,096 KB
testcase_22 AC 185 ms
93,424 KB
testcase_23 AC 90 ms
79,124 KB
testcase_24 AC 132 ms
87,508 KB
testcase_25 AC 210 ms
93,472 KB
testcase_26 AC 140 ms
88,512 KB
testcase_27 AC 189 ms
93,464 KB
testcase_28 AC 94 ms
80,176 KB
testcase_29 AC 114 ms
83,208 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