結果

問題 No.2424 Josouzai
ユーザー Yoshitada IkedaYoshitada Ikeda
提出日時 2023-10-01 10:13:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 123 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,648 KB
最終ジャッジ日時 2024-07-26 13:26:15
合計ジャッジ時間 5,106 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 60 ms
17,140 KB
testcase_05 AC 140 ms
32,648 KB
testcase_06 AC 137 ms
32,368 KB
testcase_07 AC 135 ms
32,252 KB
testcase_08 AC 137 ms
32,644 KB
testcase_09 AC 27 ms
10,624 KB
testcase_10 AC 46 ms
16,384 KB
testcase_11 AC 85 ms
27,388 KB
testcase_12 AC 69 ms
23,200 KB
testcase_13 AC 61 ms
17,452 KB
testcase_14 AC 84 ms
22,584 KB
testcase_15 AC 34 ms
12,416 KB
testcase_16 AC 123 ms
29,680 KB
testcase_17 AC 49 ms
15,468 KB
testcase_18 AC 56 ms
16,436 KB
testcase_19 AC 80 ms
20,832 KB
testcase_20 AC 127 ms
30,512 KB
testcase_21 AC 97 ms
25,548 KB
testcase_22 AC 57 ms
17,072 KB
testcase_23 AC 63 ms
18,580 KB
testcase_24 AC 45 ms
14,076 KB
testcase_25 AC 138 ms
31,364 KB
testcase_26 AC 107 ms
25,340 KB
testcase_27 AC 136 ms
31,848 KB
testcase_28 AC 115 ms
28,912 KB
testcase_29 AC 105 ms
27,028 KB
testcase_30 AC 45 ms
14,396 KB
testcase_31 AC 71 ms
20,164 KB
testcase_32 AC 129 ms
31,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
aList = list(map(int, input().split()))

aList.sort()

sum = 0
nmax = 0
for i in range(n):
    if sum + aList[i] > k:
        break
    else:
        sum = sum + aList[i]
        nmax = nmax + 1

rest = k - sum

print("%d %d" % (nmax, rest))
0