結果

問題 No.2424 Josouzai
ユーザー hiro1729hiro1729
提出日時 2023-09-08 20:23:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 160 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 107,872 KB
最終ジャッジ日時 2024-06-26 13:16:24
合計ジャッジ時間 4,193 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,940 KB
testcase_01 AC 37 ms
52,700 KB
testcase_02 AC 36 ms
51,820 KB
testcase_03 WA -
testcase_04 AC 63 ms
74,152 KB
testcase_05 AC 130 ms
102,244 KB
testcase_06 AC 124 ms
107,148 KB
testcase_07 AC 123 ms
107,352 KB
testcase_08 AC 131 ms
102,040 KB
testcase_09 AC 38 ms
52,656 KB
testcase_10 AC 52 ms
72,436 KB
testcase_11 AC 77 ms
99,812 KB
testcase_12 AC 67 ms
89,308 KB
testcase_13 AC 62 ms
74,412 KB
testcase_14 AC 81 ms
85,872 KB
testcase_15 AC 45 ms
63,884 KB
testcase_16 AC 109 ms
103,072 KB
testcase_17 AC 56 ms
70,604 KB
testcase_18 AC 59 ms
72,988 KB
testcase_19 AC 75 ms
83,020 KB
testcase_20 AC 111 ms
103,288 KB
testcase_21 AC 93 ms
93,740 KB
testcase_22 AC 61 ms
73,352 KB
testcase_23 AC 67 ms
77,876 KB
testcase_24 AC 51 ms
66,860 KB
testcase_25 AC 117 ms
107,436 KB
testcase_26 AC 92 ms
93,108 KB
testcase_27 AC 122 ms
107,872 KB
testcase_28 AC 105 ms
100,468 KB
testcase_29 AC 98 ms
98,100 KB
testcase_30 AC 53 ms
67,012 KB
testcase_31 AC 73 ms
81,464 KB
testcase_32 AC 120 ms
107,440 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))
0