結果

問題 No.5 数字のブロック
ユーザー convexineqconvexineq
提出日時 2020-11-22 23:44:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 188 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 61,920 KB
最終ジャッジ日時 2024-07-23 16:49:01
合計ジャッジ時間 2,890 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,988 KB
testcase_01 AC 37 ms
53,280 KB
testcase_02 WA -
testcase_03 AC 43 ms
60,524 KB
testcase_04 AC 42 ms
59,280 KB
testcase_05 WA -
testcase_06 AC 43 ms
60,384 KB
testcase_07 AC 43 ms
59,448 KB
testcase_08 AC 42 ms
60,380 KB
testcase_09 AC 42 ms
59,268 KB
testcase_10 AC 44 ms
61,636 KB
testcase_11 AC 44 ms
60,820 KB
testcase_12 AC 43 ms
60,044 KB
testcase_13 AC 44 ms
61,080 KB
testcase_14 AC 38 ms
53,632 KB
testcase_15 WA -
testcase_16 AC 44 ms
59,912 KB
testcase_17 AC 44 ms
60,668 KB
testcase_18 AC 44 ms
61,060 KB
testcase_19 AC 44 ms
61,920 KB
testcase_20 AC 38 ms
52,828 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 37 ms
53,248 KB
testcase_24 AC 38 ms
52,712 KB
testcase_25 AC 39 ms
53,888 KB
testcase_26 AC 38 ms
51,996 KB
testcase_27 AC 38 ms
52,436 KB
testcase_28 AC 38 ms
52,552 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 38 ms
52,552 KB
testcase_32 AC 38 ms
52,228 KB
testcase_33 AC 38 ms
51,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline
read = sys.stdin.read

w,_,*a = map(int,read().split())
a.sort()
d = ans = 0
for i in a:
    if d+i < w:
        d += i
        ans += 1
print(ans)
0