結果
問題 | No.5 数字のブロック |
ユーザー | もりを |
提出日時 | 2020-04-25 23:24:38 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 35 ms / 5,000 ms |
コード長 | 160 bytes |
コンパイル時間 | 210 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 11,648 KB |
最終ジャッジ日時 | 2024-11-08 01:59:40 |
合計ジャッジ時間 | 2,397 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 34 |
ソースコード
l = int(input()) n = int(input()) a = list(map(int,input().split())) a = sorted(a) res = 0 for i in a: if i <= l: res += 1 l -= i print(res)