結果

問題 No.5 数字のブロック
ユーザー y_nakamura_CC2
提出日時 2017-12-28 00:07:07
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 34 ms / 5,000 ms
コード長 275 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-11-18 11:53:43
合計ジャッジ時間 1,972 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

boxLength = int(input())
blockNum = int(input())
blockWidths = input()

max = 0

blockWidths = list(map(int, blockWidths.split()))
blockWidths.sort()

for width in blockWidths:
    boxLength -= width
    if boxLength >= 0:
        max += 1
    else:
        break

print(max)
0