結果

問題 No.5 数字のブロック
ユーザー R NR N
提出日時 2020-07-22 18:41:04
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 54 ms / 5,000 ms
コード長 427 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 14,208 KB
最終ジャッジ日時 2024-06-12 23:38:03
合計ジャッジ時間 3,117 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
13,824 KB
testcase_01 AC 49 ms
13,824 KB
testcase_02 AC 47 ms
13,824 KB
testcase_03 AC 51 ms
13,952 KB
testcase_04 AC 50 ms
13,952 KB
testcase_05 AC 54 ms
14,208 KB
testcase_06 AC 51 ms
13,952 KB
testcase_07 AC 48 ms
13,824 KB
testcase_08 AC 50 ms
14,080 KB
testcase_09 AC 49 ms
13,824 KB
testcase_10 AC 51 ms
14,080 KB
testcase_11 AC 50 ms
13,696 KB
testcase_12 AC 50 ms
13,952 KB
testcase_13 AC 51 ms
14,208 KB
testcase_14 AC 48 ms
13,696 KB
testcase_15 AC 48 ms
13,952 KB
testcase_16 AC 52 ms
14,208 KB
testcase_17 AC 52 ms
14,208 KB
testcase_18 AC 50 ms
14,208 KB
testcase_19 AC 50 ms
14,208 KB
testcase_20 AC 48 ms
13,696 KB
testcase_21 AC 47 ms
13,824 KB
testcase_22 AC 46 ms
13,952 KB
testcase_23 AC 46 ms
13,696 KB
testcase_24 AC 49 ms
13,824 KB
testcase_25 AC 48 ms
13,952 KB
testcase_26 AC 50 ms
13,696 KB
testcase_27 AC 49 ms
13,952 KB
testcase_28 AC 47 ms
13,824 KB
testcase_29 AC 49 ms
13,952 KB
testcase_30 AC 50 ms
13,824 KB
testcase_31 AC 50 ms
13,824 KB
testcase_32 AC 49 ms
13,824 KB
testcase_33 AC 49 ms
13,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding:utf-8
import statistics
hako_L = int(input())
block_num = int(input())
block_list = list(map(int, input().split()))
block_list = sorted(block_list)

list_center = statistics.median(block_list)
a = 0
i = 0
c = 0
while True:
    try:
        c += 1
        a += block_list[i]
        i += 1
        if a > hako_L:
            break
        else:
            continue
    except IndexError:
            break
print(c - 1)
0