結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 28 ms
10,496 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 29 ms
10,496 KB
testcase_04 AC 62 ms
17,008 KB
testcase_05 AC 149 ms
32,380 KB
testcase_06 AC 146 ms
32,104 KB
testcase_07 AC 148 ms
32,224 KB
testcase_08 AC 146 ms
32,376 KB
testcase_09 AC 28 ms
10,496 KB
testcase_10 AC 49 ms
16,244 KB
testcase_11 AC 89 ms
27,376 KB
testcase_12 AC 74 ms
23,064 KB
testcase_13 AC 61 ms
17,180 KB
testcase_14 AC 89 ms
22,440 KB
testcase_15 AC 35 ms
12,160 KB
testcase_16 AC 128 ms
29,540 KB
testcase_17 AC 52 ms
15,456 KB
testcase_18 AC 60 ms
16,428 KB
testcase_19 AC 81 ms
20,564 KB
testcase_20 AC 127 ms
30,252 KB
testcase_21 AC 102 ms
25,544 KB
testcase_22 AC 58 ms
17,152 KB
testcase_23 AC 68 ms
18,568 KB
testcase_24 AC 43 ms
13,952 KB
testcase_25 AC 137 ms
31,240 KB
testcase_26 AC 105 ms
25,200 KB
testcase_27 AC 149 ms
31,704 KB
testcase_28 AC 128 ms
28,776 KB
testcase_29 AC 112 ms
27,008 KB
testcase_30 AC 47 ms
14,392 KB
testcase_31 AC 76 ms
20,020 KB
testcase_32 AC 136 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