結果
問題 | No.5 数字のブロック |
ユーザー |
|
提出日時 | 2021-04-25 02:04:16 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 43 ms / 5,000 ms |
コード長 | 212 bytes |
コンパイル時間 | 162 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 59,776 KB |
最終ジャッジ日時 | 2024-07-04 09:22:28 |
合計ジャッジ時間 | 2,830 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 34 |
ソースコード
L = int(input()) N = int(input()) W = list(map(int,input().split())) W.sort() total = 0 for i,w in enumerate(W): total += w if total > L: print(i) break else: print(i+1)