結果
問題 | No.5 数字のブロック |
ユーザー | kisaragi211 |
提出日時 | 2018-01-12 20:43:39 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 32 ms / 5,000 ms |
コード長 | 217 bytes |
コンパイル時間 | 102 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,648 KB |
最終ジャッジ日時 | 2024-11-18 11:55:40 |
合計ジャッジ時間 | 2,245 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 34 |
ソースコード
L = int(input()) N = int(input()) W = list(map(int, input().split())) total = 0 count = 0 W.sort() for x in range(N): total += W[x] if total > L: total -= W[x] break count += 1 print(count)