結果

問題 No.2424 Josouzai
ユーザー hiro1729hiro1729
提出日時 2023-09-08 20:24:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 172 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,552 KB
実行使用メモリ 107,440 KB
最終ジャッジ日時 2024-06-26 13:17:02
合計ジャッジ時間 4,172 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,260 KB
testcase_01 AC 36 ms
53,172 KB
testcase_02 AC 37 ms
52,148 KB
testcase_03 AC 36 ms
52,036 KB
testcase_04 AC 66 ms
75,156 KB
testcase_05 AC 130 ms
102,152 KB
testcase_06 AC 122 ms
107,200 KB
testcase_07 AC 122 ms
107,368 KB
testcase_08 AC 129 ms
102,016 KB
testcase_09 AC 38 ms
52,664 KB
testcase_10 AC 51 ms
71,916 KB
testcase_11 AC 78 ms
98,688 KB
testcase_12 AC 68 ms
89,624 KB
testcase_13 AC 61 ms
74,232 KB
testcase_14 AC 81 ms
86,160 KB
testcase_15 AC 45 ms
63,308 KB
testcase_16 AC 109 ms
103,740 KB
testcase_17 AC 56 ms
70,436 KB
testcase_18 AC 59 ms
72,848 KB
testcase_19 AC 77 ms
82,980 KB
testcase_20 AC 112 ms
102,908 KB
testcase_21 AC 90 ms
93,796 KB
testcase_22 AC 61 ms
74,068 KB
testcase_23 AC 67 ms
78,540 KB
testcase_24 AC 50 ms
67,052 KB
testcase_25 AC 114 ms
107,440 KB
testcase_26 AC 91 ms
94,292 KB
testcase_27 AC 121 ms
107,328 KB
testcase_28 AC 104 ms
99,208 KB
testcase_29 AC 100 ms
98,472 KB
testcase_30 AC 52 ms
67,576 KB
testcase_31 AC 75 ms
81,372 KB
testcase_32 AC 121 ms
107,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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