結果
問題 | No.5 数字のブロック |
ユーザー | デキストラン |
提出日時 | 2023-06-17 23:37:38 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 35 ms / 5,000 ms |
コード長 | 193 bytes |
コンパイル時間 | 92 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,648 KB |
最終ジャッジ日時 | 2024-06-25 12:49:08 |
合計ジャッジ時間 | 2,268 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 34 |
ソースコード
L = int(input()) N = int(input()) A = list(map(int, input().split())) A.sort() t = 0 for i in range(N): if t + A[i] <= L: t +=A[i] else: print(i) exit() print(N)