結果

問題 No.2424 Josouzai
ユーザー hiro1729hiro1729
提出日時 2023-09-08 20:22:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 143 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 107,728 KB
最終ジャッジ日時 2024-06-26 13:14:57
合計ジャッジ時間 5,219 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,828 KB
testcase_01 AC 38 ms
51,880 KB
testcase_02 AC 38 ms
53,012 KB
testcase_03 WA -
testcase_04 AC 66 ms
74,660 KB
testcase_05 AC 131 ms
102,064 KB
testcase_06 AC 122 ms
107,348 KB
testcase_07 AC 123 ms
107,240 KB
testcase_08 AC 132 ms
101,996 KB
testcase_09 AC 37 ms
51,944 KB
testcase_10 AC 52 ms
72,096 KB
testcase_11 AC 77 ms
99,168 KB
testcase_12 AC 69 ms
89,996 KB
testcase_13 AC 63 ms
75,068 KB
testcase_14 AC 82 ms
86,644 KB
testcase_15 AC 45 ms
62,096 KB
testcase_16 AC 111 ms
103,156 KB
testcase_17 AC 56 ms
69,536 KB
testcase_18 AC 60 ms
72,116 KB
testcase_19 AC 75 ms
82,276 KB
testcase_20 AC 110 ms
103,576 KB
testcase_21 AC 94 ms
93,216 KB
testcase_22 AC 63 ms
73,548 KB
testcase_23 AC 69 ms
77,160 KB
testcase_24 AC 54 ms
66,004 KB
testcase_25 AC 116 ms
107,532 KB
testcase_26 AC 93 ms
93,828 KB
testcase_27 AC 120 ms
107,728 KB
testcase_28 AC 105 ms
99,340 KB
testcase_29 AC 102 ms
98,692 KB
testcase_30 AC 52 ms
66,428 KB
testcase_31 AC 74 ms
80,744 KB
testcase_32 AC 120 ms
107,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
s = 0
for i, j in enumerate(sorted(map(int, input().split()))):
	s += j
	if s > k:
		exit(print(i, k - s + j))
0