結果

問題 No.2424 Josouzai
ユーザー YU HiroseYU Hirose
提出日時 2024-04-25 14:21:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 226 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,516 KB
最終ジャッジ日時 2024-11-08 01:21:13
合計ジャッジ時間 6,393 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 31 ms
10,496 KB
testcase_03 WA -
testcase_04 AC 81 ms
17,104 KB
testcase_05 AC 221 ms
32,516 KB
testcase_06 AC 219 ms
32,232 KB
testcase_07 AC 213 ms
32,360 KB
testcase_08 AC 215 ms
32,512 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 65 ms
16,252 KB
testcase_11 AC 136 ms
27,604 KB
testcase_12 AC 108 ms
23,260 KB
testcase_13 AC 81 ms
17,060 KB
testcase_14 AC 125 ms
22,452 KB
testcase_15 AC 42 ms
12,544 KB
testcase_16 AC 189 ms
29,804 KB
testcase_17 AC 66 ms
15,340 KB
testcase_18 AC 75 ms
16,436 KB
testcase_19 AC 109 ms
20,700 KB
testcase_20 AC 185 ms
30,128 KB
testcase_21 AC 149 ms
25,412 KB
testcase_22 AC 78 ms
17,160 KB
testcase_23 AC 90 ms
18,704 KB
testcase_24 AC 54 ms
14,460 KB
testcase_25 AC 197 ms
31,492 KB
testcase_26 AC 149 ms
25,212 KB
testcase_27 AC 206 ms
31,972 KB
testcase_28 AC 176 ms
28,912 KB
testcase_29 AC 161 ms
27,024 KB
testcase_30 AC 57 ms
14,388 KB
testcase_31 AC 105 ms
19,904 KB
testcase_32 AC 202 ms
31,604 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