結果
| 問題 | No.5 数字のブロック |
| コンテスト | |
| ユーザー |
310icecrystal
|
| 提出日時 | 2023-07-06 07:36:42 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 155 bytes |
| 記録 | |
| コンパイル時間 | 146 ms |
| コンパイル使用メモリ | 85,372 KB |
| 実行使用メモリ | 152,596 KB |
| 最終ジャッジ日時 | 2026-04-02 19:54:01 |
| 合計ジャッジ時間 | 12,651 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | TLE * 1 -- * 33 |
ソースコード
L = int(input()) N = int(input()) W = list(map(int,input().split())) now = 0 S = 0 while now < N: if S + W[now] <= L: S += W[now] now += 1 print(now)
310icecrystal