結果

問題 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
コンパイル時間 127 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 32,636 KB
最終ジャッジ日時 2024-11-28 05:46:13
合計ジャッジ時間 4,454 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 28 ms
10,496 KB
testcase_02 AC 27 ms
10,496 KB
testcase_03 WA -
testcase_04 AC 63 ms
17,136 KB
testcase_05 AC 140 ms
32,504 KB
testcase_06 AC 136 ms
32,228 KB
testcase_07 AC 143 ms
32,356 KB
testcase_08 AC 145 ms
32,636 KB
testcase_09 AC 27 ms
10,496 KB
testcase_10 AC 44 ms
16,120 KB
testcase_11 AC 83 ms
27,508 KB
testcase_12 AC 69 ms
23,064 KB
testcase_13 AC 59 ms
17,312 KB
testcase_14 AC 85 ms
22,440 KB
testcase_15 AC 36 ms
12,416 KB
testcase_16 AC 123 ms
29,664 KB
testcase_17 AC 50 ms
15,456 KB
testcase_18 AC 53 ms
16,556 KB
testcase_19 AC 73 ms
20,688 KB
testcase_20 AC 120 ms
30,248 KB
testcase_21 AC 99 ms
25,672 KB
testcase_22 AC 61 ms
17,160 KB
testcase_23 AC 68 ms
18,568 KB
testcase_24 AC 44 ms
14,076 KB
testcase_25 AC 132 ms
31,364 KB
testcase_26 AC 101 ms
25,204 KB
testcase_27 AC 146 ms
31,960 KB
testcase_28 AC 128 ms
29,032 KB
testcase_29 AC 110 ms
27,024 KB
testcase_30 AC 44 ms
14,396 KB
testcase_31 AC 73 ms
20,024 KB
testcase_32 AC 131 ms
31,652 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