結果
問題 |
No.5 数字のブロック
|
ユーザー |
![]() |
提出日時 | 2025-03-20 18:46:20 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 43 ms / 5,000 ms |
コード長 | 191 bytes |
コンパイル時間 | 172 ms |
コンパイル使用メモリ | 82,736 KB |
実行使用メモリ | 61,488 KB |
最終ジャッジ日時 | 2025-03-20 18:46:49 |
合計ジャッジ時間 | 2,463 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 34 |
ソースコード
L = int(input()) N = int(input()) W = list(map(int, input().split())) W.sort() total = 0 count = 0 for w in W: if total + w > L: break total += w count += 1 print(count)