結果

問題 No.2424 Josouzai
ユーザー lloyzlloyz
提出日時 2023-08-18 21:30:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 224 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 32,504 KB
最終ジャッジ日時 2024-05-06 03:21:49
合計ジャッジ時間 4,840 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,496 KB
testcase_01 AC 25 ms
10,368 KB
testcase_02 AC 26 ms
10,368 KB
testcase_03 WA -
testcase_04 AC 56 ms
17,004 KB
testcase_05 AC 142 ms
32,504 KB
testcase_06 AC 150 ms
32,100 KB
testcase_07 AC 139 ms
32,100 KB
testcase_08 AC 141 ms
32,504 KB
testcase_09 AC 28 ms
10,496 KB
testcase_10 AC 45 ms
16,116 KB
testcase_11 AC 80 ms
27,248 KB
testcase_12 AC 66 ms
22,932 KB
testcase_13 AC 57 ms
17,308 KB
testcase_14 AC 83 ms
22,444 KB
testcase_15 AC 33 ms
12,288 KB
testcase_16 AC 125 ms
29,540 KB
testcase_17 AC 50 ms
15,460 KB
testcase_18 AC 53 ms
16,300 KB
testcase_19 AC 75 ms
20,692 KB
testcase_20 AC 119 ms
30,128 KB
testcase_21 AC 95 ms
25,412 KB
testcase_22 AC 56 ms
17,032 KB
testcase_23 AC 65 ms
18,440 KB
testcase_24 AC 41 ms
13,944 KB
testcase_25 AC 128 ms
31,240 KB
testcase_26 AC 98 ms
25,460 KB
testcase_27 AC 136 ms
31,712 KB
testcase_28 AC 117 ms
28,956 KB
testcase_29 AC 109 ms
26,896 KB
testcase_30 AC 43 ms
14,256 KB
testcase_31 AC 70 ms
20,020 KB
testcase_32 AC 132 ms
31,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
A = list(map(int, input().split()))

A.sort()
ANS = [0, k]
for i in range(n):
    if ANS[1] > A[i]:
        ANS[0] += 1
        ANS[1] -= A[i]
    else:
        break
print(*ANS)
0