結果

問題 No.2424 Josouzai
ユーザー YU HiroseYU Hirose
提出日時 2024-04-25 14:27:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 228 bytes
コンパイル時間 477 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,520 KB
最終ジャッジ日時 2024-11-08 01:26:11
合計ジャッジ時間 5,723 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 AC 79 ms
16,976 KB
testcase_05 AC 217 ms
32,512 KB
testcase_06 AC 213 ms
32,236 KB
testcase_07 AC 215 ms
32,104 KB
testcase_08 AC 217 ms
32,520 KB
testcase_09 AC 30 ms
10,496 KB
testcase_10 AC 65 ms
16,380 KB
testcase_11 AC 137 ms
27,364 KB
testcase_12 AC 109 ms
23,100 KB
testcase_13 AC 81 ms
17,188 KB
testcase_14 AC 123 ms
22,580 KB
testcase_15 AC 42 ms
12,288 KB
testcase_16 AC 194 ms
29,544 KB
testcase_17 AC 67 ms
15,464 KB
testcase_18 AC 74 ms
16,436 KB
testcase_19 AC 110 ms
20,700 KB
testcase_20 AC 187 ms
30,132 KB
testcase_21 AC 146 ms
25,668 KB
testcase_22 AC 78 ms
17,024 KB
testcase_23 AC 92 ms
18,576 KB
testcase_24 AC 55 ms
14,204 KB
testcase_25 AC 203 ms
31,408 KB
testcase_26 AC 152 ms
25,208 KB
testcase_27 AC 207 ms
31,972 KB
testcase_28 AC 174 ms
28,908 KB
testcase_29 AC 160 ms
27,148 KB
testcase_30 AC 57 ms
14,516 KB
testcase_31 AC 103 ms
20,032 KB
testcase_32 AC 209 ms
31,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate
n, k = map(int, input().split())
a = list(map(int, input().split()))
a.sort()
acc = list(accumulate(a))
cnt = 0

for i in range(n):
    if acc[i] <= k:
        cnt += 1
print(cnt, k - acc[cnt-1])
0