結果

問題 No.305 鍵(2)
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-12 19:32:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 194 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 69,600 KB
平均クエリ数 86.69
最終ジャッジ日時 2024-09-12 19:32:39
合計ジャッジ時間 2,276 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
69,216 KB
testcase_01 AC 64 ms
69,248 KB
testcase_02 AC 66 ms
68,448 KB
testcase_03 AC 69 ms
69,216 KB
testcase_04 AC 65 ms
69,344 KB
testcase_05 AC 65 ms
68,192 KB
testcase_06 AC 58 ms
68,192 KB
testcase_07 AC 66 ms
69,344 KB
testcase_08 AC 67 ms
68,960 KB
testcase_09 AC 66 ms
69,088 KB
testcase_10 AC 65 ms
69,592 KB
testcase_11 AC 65 ms
69,344 KB
testcase_12 AC 70 ms
69,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s=["0"]*10
for i in range(10):
	p=-1
	q=0
	for j in range(10):
		s[i]=str(j)
		print("".join(s))
		np,l=input().split()
		np=int(np)
		if np==10:
			exit()
		if np>p:
			p=np
			q=j
	s[i]=str(q)
0