結果

問題 No.5 数字のブロック
ユーザー noriocnorioc
提出日時 2024-06-20 04:45:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 5,000 ms
コード長 188 bytes
コンパイル時間 516 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 60,968 KB
最終ジャッジ日時 2024-06-20 04:45:57
合計ジャッジ時間 3,853 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,056 KB
testcase_01 AC 38 ms
53,228 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 45 ms
59,612 KB
testcase_04 AC 44 ms
59,516 KB
testcase_05 AC 47 ms
59,824 KB
testcase_06 AC 43 ms
59,500 KB
testcase_07 AC 42 ms
59,252 KB
testcase_08 AC 43 ms
59,488 KB
testcase_09 AC 40 ms
59,068 KB
testcase_10 AC 43 ms
60,276 KB
testcase_11 AC 42 ms
58,408 KB
testcase_12 AC 41 ms
59,312 KB
testcase_13 AC 42 ms
60,268 KB
testcase_14 AC 37 ms
52,560 KB
testcase_15 AC 38 ms
54,052 KB
testcase_16 AC 42 ms
60,888 KB
testcase_17 AC 42 ms
60,968 KB
testcase_18 AC 42 ms
60,908 KB
testcase_19 AC 43 ms
60,760 KB
testcase_20 AC 37 ms
52,580 KB
testcase_21 AC 38 ms
52,340 KB
testcase_22 AC 37 ms
52,432 KB
testcase_23 AC 37 ms
53,100 KB
testcase_24 AC 38 ms
53,232 KB
testcase_25 AC 38 ms
52,808 KB
testcase_26 AC 37 ms
52,264 KB
testcase_27 AC 38 ms
52,288 KB
testcase_28 AC 37 ms
52,192 KB
testcase_29 AC 42 ms
59,692 KB
testcase_30 AC 40 ms
58,548 KB
testcase_31 AC 37 ms
52,888 KB
testcase_32 AC 37 ms
52,872 KB
testcase_33 AC 38 ms
52,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L = int(input())
N = int(input())
W = list(map(int, input().split()))

t = 0
for i, w in enumerate(sorted(W)):
    if t+w > L:
        print(i)
        break
    t += w
else:
    print(N)
0