結果
| 問題 | No.5 数字のブロック |
| コンテスト | |
| ユーザー |
motor_radial
|
| 提出日時 | 2019-07-20 17:43:58 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 164 bytes |
| 記録 | |
| コンパイル時間 | 660 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 15,488 KB |
| 最終ジャッジ日時 | 2026-06-03 15:51:41 |
| 合計ジャッジ時間 | 5,189 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 27 WA * 7 |
ソースコード
L=int(input())
N=int(input())
W=list(map(int,input().split()))
W.sort()
count=0
for i in range(N):
L-=W[i]
if L<=0:
break
count+=1
print(count)
motor_radial