結果

問題 No.2424 Josouzai
ユーザー tassei903tassei903
提出日時 2023-08-15 02:34:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 173 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 109,056 KB
最終ジャッジ日時 2024-11-26 21:10:00
合計ジャッジ時間 4,415 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,712 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 66 ms
74,112 KB
testcase_05 AC 132 ms
101,888 KB
testcase_06 AC 126 ms
109,056 KB
testcase_07 AC 127 ms
108,672 KB
testcase_08 AC 133 ms
101,840 KB
testcase_09 AC 40 ms
51,712 KB
testcase_10 AC 56 ms
71,992 KB
testcase_11 AC 82 ms
99,712 KB
testcase_12 AC 71 ms
90,112 KB
testcase_13 AC 65 ms
73,856 KB
testcase_14 AC 85 ms
86,656 KB
testcase_15 AC 48 ms
61,952 KB
testcase_16 AC 111 ms
104,320 KB
testcase_17 AC 58 ms
69,376 KB
testcase_18 AC 61 ms
71,936 KB
testcase_19 AC 78 ms
82,944 KB
testcase_20 AC 115 ms
104,320 KB
testcase_21 AC 99 ms
93,824 KB
testcase_22 AC 66 ms
73,728 KB
testcase_23 AC 72 ms
77,952 KB
testcase_24 AC 54 ms
66,304 KB
testcase_25 AC 119 ms
108,672 KB
testcase_26 AC 97 ms
94,080 KB
testcase_27 AC 125 ms
109,056 KB
testcase_28 AC 107 ms
100,352 KB
testcase_29 AC 103 ms
98,176 KB
testcase_30 AC 56 ms
66,816 KB
testcase_31 AC 76 ms
80,384 KB
testcase_32 AC 125 ms
108,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
a = sorted(list(map(int, input().split())))
#print(a, k)
i = 0
s = 0
while i < n and s + a[i] <= k:
    s += a[i]
    i += 1
print(i, k - s)
0