結果
| 問題 | No.5 数字のブロック |
| コンテスト | |
| ユーザー |
もぐら 3.0
|
| 提出日時 | 2023-11-13 08:18:12 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 148 bytes |
| 記録 | |
| コンパイル時間 | 180 ms |
| コンパイル使用メモリ | 85,376 KB |
| 実行使用メモリ | 60,672 KB |
| 最終ジャッジ日時 | 2026-04-13 05:54:33 |
| 合計ジャッジ時間 | 2,915 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 27 WA * 7 |
ソースコード
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