結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,496 KB
testcase_01 AC 26 ms
10,496 KB
testcase_02 AC 27 ms
10,496 KB
testcase_03 RE -
testcase_04 AC 60 ms
16,976 KB
testcase_05 AC 136 ms
32,512 KB
testcase_06 AC 132 ms
32,108 KB
testcase_07 AC 131 ms
32,360 KB
testcase_08 AC 133 ms
32,516 KB
testcase_09 AC 25 ms
10,496 KB
testcase_10 AC 43 ms
16,256 KB
testcase_11 AC 79 ms
27,388 KB
testcase_12 AC 67 ms
23,072 KB
testcase_13 AC 58 ms
17,064 KB
testcase_14 AC 82 ms
22,580 KB
testcase_15 AC 34 ms
12,288 KB
testcase_16 AC 126 ms
29,544 KB
testcase_17 AC 48 ms
15,464 KB
testcase_18 AC 53 ms
16,304 KB
testcase_19 AC 71 ms
20,700 KB
testcase_20 AC 119 ms
30,128 KB
testcase_21 AC 94 ms
25,416 KB
testcase_22 AC 55 ms
16,936 KB
testcase_23 AC 61 ms
18,416 KB
testcase_24 AC 41 ms
13,908 KB
testcase_25 AC 123 ms
31,360 KB
testcase_26 AC 97 ms
25,216 KB
testcase_27 AC 135 ms
31,844 KB
testcase_28 AC 114 ms
28,904 KB
testcase_29 AC 103 ms
26,892 KB
testcase_30 AC 45 ms
14,216 KB
testcase_31 AC 71 ms
20,028 KB
testcase_32 AC 129 ms
31,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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