結果

問題 No.5 数字のブロック
ユーザー ABKZABKZ
提出日時 2021-06-11 10:09:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 150 bytes
コンパイル時間 503 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 62,296 KB
最終ジャッジ日時 2024-05-08 03:39:48
合計ジャッジ時間 2,555 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,120 KB
testcase_01 AC 38 ms
52,960 KB
testcase_02 AC 37 ms
53,012 KB
testcase_03 AC 42 ms
60,120 KB
testcase_04 AC 42 ms
59,912 KB
testcase_05 AC 42 ms
60,788 KB
testcase_06 AC 42 ms
60,612 KB
testcase_07 AC 42 ms
61,076 KB
testcase_08 AC 43 ms
61,004 KB
testcase_09 AC 41 ms
60,440 KB
testcase_10 AC 43 ms
60,384 KB
testcase_11 AC 41 ms
59,356 KB
testcase_12 AC 42 ms
60,288 KB
testcase_13 AC 42 ms
61,536 KB
testcase_14 AC 35 ms
52,992 KB
testcase_15 AC 36 ms
53,084 KB
testcase_16 AC 42 ms
60,908 KB
testcase_17 AC 42 ms
60,824 KB
testcase_18 AC 42 ms
62,296 KB
testcase_19 AC 42 ms
61,460 KB
testcase_20 AC 37 ms
53,116 KB
testcase_21 AC 36 ms
52,500 KB
testcase_22 AC 38 ms
52,900 KB
testcase_23 AC 37 ms
53,184 KB
testcase_24 AC 37 ms
52,340 KB
testcase_25 AC 37 ms
52,512 KB
testcase_26 AC 38 ms
52,136 KB
testcase_27 AC 36 ms
52,640 KB
testcase_28 AC 38 ms
52,720 KB
testcase_29 AC 40 ms
60,516 KB
testcase_30 AC 42 ms
60,132 KB
testcase_31 AC 38 ms
52,692 KB
testcase_32 AC 38 ms
52,412 KB
testcase_33 AC 37 ms
53,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = 0
for i in W:
  L = L - i
  if L >= 0:
    ans += 1

print(ans)
0