結果

問題 No.5018 Let's Make a Best-seller Book
ユーザー hiro1729hiro1729
提出日時 2023-10-01 13:15:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 139 ms / 400 ms
コード長 324 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 87,276 KB
実行使用メモリ 92,192 KB
スコア 2,017
平均クエリ数 52.00
最終ジャッジ日時 2023-10-01 13:16:09
合計ジャッジ時間 16,882 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 100
権限があれば一括ダウンロードができます

ソースコード

diff #

T, N, money = map(int, input().split())
S = [0] * N
P = [0] * N
R = [0] * N
for week in range(T):
	if week == 26:
		print(2, 1, flush = True)
	else:
		L = [5] * N
		print("1", *L, flush=True)
	money = int(input())
	S = list(map(int, input().split()))
	P = list(map(int, input().split()))
	R = list(map(int, input().split()))
0