結果

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

ソースコード

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
    elif total == wide:
        print(i + 1)
        break
0