結果

問題 No.5 数字のブロック
ユーザー OhnumaOhnuma
提出日時 2020-04-08 23:23:08
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 473 ms / 5,000 ms
コード長 194 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,552 KB
最終ジャッジ日時 2024-07-19 05:51:04
合計ジャッジ時間 16,899 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 465 ms
44,304 KB
testcase_01 AC 446 ms
43,772 KB
testcase_02 AC 443 ms
43,768 KB
testcase_03 AC 446 ms
43,896 KB
testcase_04 AC 459 ms
43,916 KB
testcase_05 AC 451 ms
43,916 KB
testcase_06 AC 456 ms
44,168 KB
testcase_07 AC 456 ms
44,300 KB
testcase_08 AC 441 ms
43,772 KB
testcase_09 AC 437 ms
44,176 KB
testcase_10 AC 440 ms
44,048 KB
testcase_11 AC 462 ms
43,788 KB
testcase_12 AC 439 ms
43,776 KB
testcase_13 AC 445 ms
43,768 KB
testcase_14 AC 436 ms
43,896 KB
testcase_15 AC 447 ms
43,908 KB
testcase_16 AC 443 ms
43,772 KB
testcase_17 AC 449 ms
44,428 KB
testcase_18 AC 473 ms
44,552 KB
testcase_19 AC 461 ms
43,924 KB
testcase_20 AC 449 ms
43,772 KB
testcase_21 AC 439 ms
44,040 KB
testcase_22 AC 456 ms
44,172 KB
testcase_23 AC 443 ms
44,152 KB
testcase_24 AC 444 ms
43,908 KB
testcase_25 AC 438 ms
43,920 KB
testcase_26 AC 464 ms
44,424 KB
testcase_27 AC 444 ms
43,776 KB
testcase_28 AC 447 ms
43,652 KB
testcase_29 AC 441 ms
44,176 KB
testcase_30 AC 450 ms
44,164 KB
testcase_31 AC 442 ms
44,152 KB
testcase_32 AC 453 ms
44,048 KB
testcase_33 AC 458 ms
44,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
l = int(input())
n = int(input())
w = sorted(list(map(int,input().split())))
cumsum = np.cumsum(w)
ret = 0
for c in cumsum:
    if c > l:
        break
    ret += 1
print(ret)
0