結果
| 問題 | No.5 数字のブロック |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-01-02 00:28:48 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 159 bytes |
| 記録 | |
| コンパイル時間 | 352 ms |
| コンパイル使用メモリ | 20,696 KB |
| 実行使用メモリ | 20,444 KB |
| 最終ジャッジ日時 | 2026-05-29 02:53:14 |
| 合計ジャッジ時間 | 6,116 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 24 RE * 10 |
ソースコード
l = int(input())
n = int(input())
w = [int(x) for x in input().split()]
w.sort()
now = 0
cnt = 0
while l >= now:
now += w[cnt]
cnt += 1
print(cnt-1)