結果

問題 No.2424 Josouzai
ユーザー lloyzlloyz
提出日時 2023-08-18 21:31:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 225 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,636 KB
最終ジャッジ日時 2024-05-06 03:22:58
合計ジャッジ時間 4,162 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 58 ms
17,264 KB
testcase_05 AC 136 ms
32,508 KB
testcase_06 AC 141 ms
32,356 KB
testcase_07 AC 138 ms
32,228 KB
testcase_08 AC 140 ms
32,636 KB
testcase_09 AC 26 ms
10,624 KB
testcase_10 AC 43 ms
16,376 KB
testcase_11 AC 81 ms
27,508 KB
testcase_12 AC 65 ms
23,188 KB
testcase_13 AC 57 ms
17,312 KB
testcase_14 AC 82 ms
22,444 KB
testcase_15 AC 39 ms
12,416 KB
testcase_16 AC 133 ms
29,792 KB
testcase_17 AC 49 ms
15,456 KB
testcase_18 AC 52 ms
16,552 KB
testcase_19 AC 73 ms
20,772 KB
testcase_20 AC 129 ms
30,380 KB
testcase_21 AC 97 ms
25,672 KB
testcase_22 AC 54 ms
17,192 KB
testcase_23 AC 63 ms
18,696 KB
testcase_24 AC 41 ms
14,208 KB
testcase_25 AC 136 ms
31,620 KB
testcase_26 AC 97 ms
25,408 KB
testcase_27 AC 131 ms
31,836 KB
testcase_28 AC 116 ms
29,036 KB
testcase_29 AC 108 ms
27,156 KB
testcase_30 AC 44 ms
14,520 KB
testcase_31 AC 71 ms
20,152 KB
testcase_32 AC 129 ms
31,784 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