結果
| 問題 | No.5 数字のブロック |
| コンテスト | |
| ユーザー |
もぐら 3.0
|
| 提出日時 | 2023-11-13 08:18:36 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 32 ms / 5,000 ms |
| コード長 | 149 bytes |
| 記録 | |
| コンパイル時間 | 199 ms |
| コンパイル使用メモリ | 85,760 KB |
| 実行使用メモリ | 60,928 KB |
| 最終ジャッジ日時 | 2026-04-13 05:54:36 |
| 合計ジャッジ時間 | 2,277 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 34 |
ソースコード
L = int(input())
N = int(input())
W = list(map(int,input().split()))
W.sort()
ans=0
for w in W:
if L>=w:
L-=w
ans+=1
print(ans)
もぐら 3.0