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