結果
| 問題 | No.3471 ジャッジサーバーの負荷分散 |
| コンテスト | |
| ユーザー |
sasa8uyauya
|
| 提出日時 | 2026-03-06 23:13:55 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 181 ms / 2,000 ms |
| + 9µs | |
| コード長 | 163 bytes |
| 記録 | |
| コンパイル時間 | 232 ms |
| コンパイル使用メモリ | 96,236 KB |
| 実行使用メモリ | 117,632 KB |
| 最終ジャッジ日時 | 2026-07-27 07:28:26 |
| 合計ジャッジ時間 | 3,871 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 15 |
ソースコード
n,m=map(int,input().split()) t=list(map(int,input().split())) from heapq import heappush,heappop q=[0]*m for v in t: u=heappop(q) heappush(q,u+v) print(max(q))
sasa8uyauya