結果

問題 No.5 数字のブロック
ユーザー mahiromahiro
提出日時 2020-01-11 18:04:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 193 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 62,072 KB
最終ジャッジ日時 2024-11-25 06:00:27
合計ジャッジ時間 2,388 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,372 KB
testcase_01 AC 34 ms
53,488 KB
testcase_02 AC 36 ms
53,036 KB
testcase_03 AC 41 ms
61,748 KB
testcase_04 AC 39 ms
59,612 KB
testcase_05 AC 42 ms
60,864 KB
testcase_06 AC 41 ms
60,468 KB
testcase_07 AC 40 ms
60,668 KB
testcase_08 AC 41 ms
60,676 KB
testcase_09 AC 41 ms
60,104 KB
testcase_10 AC 40 ms
61,212 KB
testcase_11 AC 42 ms
59,600 KB
testcase_12 AC 39 ms
60,212 KB
testcase_13 AC 41 ms
60,964 KB
testcase_14 AC 36 ms
52,736 KB
testcase_15 AC 35 ms
52,256 KB
testcase_16 AC 41 ms
62,000 KB
testcase_17 AC 43 ms
61,028 KB
testcase_18 AC 42 ms
62,072 KB
testcase_19 AC 41 ms
61,720 KB
testcase_20 AC 36 ms
52,556 KB
testcase_21 AC 36 ms
53,112 KB
testcase_22 AC 36 ms
52,820 KB
testcase_23 AC 34 ms
53,552 KB
testcase_24 AC 35 ms
52,628 KB
testcase_25 AC 35 ms
52,736 KB
testcase_26 AC 35 ms
52,068 KB
testcase_27 AC 35 ms
53,748 KB
testcase_28 AC 36 ms
52,400 KB
testcase_29 AC 40 ms
59,504 KB
testcase_30 AC 41 ms
60,872 KB
testcase_31 AC 35 ms
53,620 KB
testcase_32 AC 36 ms
53,020 KB
testcase_33 AC 35 ms
53,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import itertools

L = int(input())
input()
W = [int(i) for i in input().split()]
W_cumsum = list(itertools.accumulate(sorted(W)))
ans = bisect.bisect_right(W_cumsum, L)
print(ans)
0