結果

問題 No.5 数字のブロック
ユーザー Co-3Co-3
提出日時 2020-12-11 22:25:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 34 ms / 5,000 ms
コード長 182 bytes
コンパイル時間 573 ms
コンパイル使用メモリ 11,760 KB
実行使用メモリ 11,180 KB
最終ジャッジ日時 2023-10-20 01:45:36
合計ジャッジ時間 2,167 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,052 KB
testcase_01 AC 30 ms
10,052 KB
testcase_02 AC 29 ms
10,052 KB
testcase_03 AC 33 ms
10,736 KB
testcase_04 AC 33 ms
10,464 KB
testcase_05 AC 34 ms
10,920 KB
testcase_06 AC 32 ms
10,600 KB
testcase_07 AC 32 ms
10,532 KB
testcase_08 AC 32 ms
10,668 KB
testcase_09 AC 30 ms
10,276 KB
testcase_10 AC 34 ms
10,996 KB
testcase_11 AC 32 ms
10,492 KB
testcase_12 AC 33 ms
10,788 KB
testcase_13 AC 33 ms
10,840 KB
testcase_14 AC 29 ms
10,056 KB
testcase_15 AC 29 ms
10,068 KB
testcase_16 AC 33 ms
10,964 KB
testcase_17 AC 34 ms
11,080 KB
testcase_18 AC 34 ms
11,028 KB
testcase_19 AC 34 ms
11,180 KB
testcase_20 AC 28 ms
10,052 KB
testcase_21 AC 29 ms
10,052 KB
testcase_22 AC 30 ms
10,052 KB
testcase_23 AC 29 ms
10,052 KB
testcase_24 AC 29 ms
10,076 KB
testcase_25 AC 29 ms
10,108 KB
testcase_26 AC 29 ms
10,052 KB
testcase_27 AC 29 ms
10,052 KB
testcase_28 AC 29 ms
10,052 KB
testcase_29 AC 31 ms
10,460 KB
testcase_30 AC 30 ms
10,300 KB
testcase_31 AC 29 ms
10,052 KB
testcase_32 AC 30 ms
10,052 KB
testcase_33 AC 30 ms
10,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l = int(input())
n = int(input())
w = list(map(int,input().split()))
w.sort()
c = 0
for i in range(n):
    l -= w[i]
    if l < 0:
        print(c)
        quit()
    c += 1
print(c)
0