結果

問題 No.2424 Josouzai
ユーザー shobonvipshobonvip
提出日時 2023-08-18 21:11:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 154 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 108,160 KB
最終ジャッジ日時 2024-05-06 02:49:18
合計ジャッジ時間 4,148 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,840 KB
testcase_01 AC 35 ms
51,712 KB
testcase_02 AC 35 ms
51,840 KB
testcase_03 AC 34 ms
51,584 KB
testcase_04 AC 62 ms
74,496 KB
testcase_05 AC 123 ms
101,888 KB
testcase_06 AC 117 ms
107,008 KB
testcase_07 AC 121 ms
107,264 KB
testcase_08 AC 129 ms
101,760 KB
testcase_09 AC 36 ms
52,096 KB
testcase_10 AC 52 ms
72,448 KB
testcase_11 AC 76 ms
98,816 KB
testcase_12 AC 66 ms
89,472 KB
testcase_13 AC 61 ms
74,112 KB
testcase_14 AC 82 ms
86,144 KB
testcase_15 AC 45 ms
62,464 KB
testcase_16 AC 109 ms
103,296 KB
testcase_17 AC 57 ms
69,888 KB
testcase_18 AC 58 ms
72,320 KB
testcase_19 AC 73 ms
82,688 KB
testcase_20 AC 109 ms
103,552 KB
testcase_21 AC 91 ms
93,696 KB
testcase_22 AC 59 ms
73,856 KB
testcase_23 AC 66 ms
77,312 KB
testcase_24 AC 50 ms
66,944 KB
testcase_25 AC 117 ms
108,160 KB
testcase_26 AC 88 ms
93,696 KB
testcase_27 AC 116 ms
107,008 KB
testcase_28 AC 101 ms
99,712 KB
testcase_29 AC 91 ms
97,408 KB
testcase_30 AC 49 ms
66,944 KB
testcase_31 AC 68 ms
80,384 KB
testcase_32 AC 113 ms
107,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int,input().split())
a = list(map(int,input().split()))
a.sort()
ans = 0
for i in range(n):
	if a[i] <= k:
		k -= a[i]
		ans += 1
print(ans, k)
0