結果

問題 No.5018 Let's Make a Best-seller Book
ユーザー hiro1729hiro1729
提出日時 2023-10-01 13:25:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 400 ms
コード長 258 bytes
コンパイル時間 409 ms
コンパイル使用メモリ 87,204 KB
実行使用メモリ 92,260 KB
スコア 0
平均クエリ数 52.00
最終ジャッジ日時 2023-10-01 13:26:15
合計ジャッジ時間 17,356 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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):
	print("1", *R, flush=True)
	money = int(input())
	S = list(map(int, input().split()))
	P = list(map(int, input().split()))
	R = list(map(int, input().split()))
0