結果

問題 No.5 数字のブロック
ユーザー iwachanOrigin
提出日時 2018-12-26 23:40:32
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 231 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-10-01 14:48:41
合計ジャッジ時間 2,324 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 2 WA * 32
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

a = [input() for l in range(3)]

wide = int(a[0])
num = int(a[1])
blk = a[2].split()

blk.sort()

total = 0
for i in range(int(num)):
    total = total + int(blk[i])
    if total >= wide:
        print(i)
        break
0