結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,496 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 66 ms
17,232 KB
testcase_05 AC 160 ms
32,644 KB
testcase_06 AC 158 ms
32,232 KB
testcase_07 AC 158 ms
32,360 KB
testcase_08 AC 161 ms
32,516 KB
testcase_09 AC 30 ms
10,496 KB
testcase_10 AC 51 ms
16,256 KB
testcase_11 AC 90 ms
27,388 KB
testcase_12 AC 75 ms
23,072 KB
testcase_13 AC 64 ms
17,192 KB
testcase_14 AC 94 ms
22,452 KB
testcase_15 AC 39 ms
12,416 KB
testcase_16 AC 143 ms
29,804 KB
testcase_17 AC 57 ms
15,468 KB
testcase_18 AC 62 ms
16,564 KB
testcase_19 AC 86 ms
20,700 KB
testcase_20 AC 141 ms
30,260 KB
testcase_21 AC 113 ms
25,672 KB
testcase_22 AC 64 ms
16,960 KB
testcase_23 AC 73 ms
18,700 KB
testcase_24 AC 48 ms
14,164 KB
testcase_25 AC 148 ms
31,236 KB
testcase_26 AC 113 ms
25,340 KB
testcase_27 AC 156 ms
31,844 KB
testcase_28 AC 137 ms
28,908 KB
testcase_29 AC 128 ms
27,156 KB
testcase_30 AC 53 ms
14,344 KB
testcase_31 AC 85 ms
19,980 KB
testcase_32 AC 158 ms
31,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int, input().split())
a = list(map(int, input().split()))
a.sort()
i = 0
ans = 0
while i < n:
    if k - a[i] >= 0:
        k -= a[i]
        i += 1
        ans += 1
    else:
        break
print(ans, k)
0