結果

問題 No.5 数字のブロック
ユーザー 🍡yurahuna🍡yurahuna
提出日時 2016-05-04 12:15:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 5,000 ms
コード長 194 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 81,776 KB
実行使用メモリ 60,908 KB
最終ジャッジ日時 2024-11-18 08:33:34
合計ジャッジ時間 2,681 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

L = int(input())
N = int(input())
W = list(map(int, input().split()))
W.sort()
W.append(10**8)
temp = 0
for i in range(len(W)):
    temp += W[i]
    if temp > L:
        print(i)
        exit()
0