結果

問題 No.2424 Josouzai
ユーザー anonymouslyanonymously
提出日時 2023-08-18 21:12:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 171 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,528 KB
最終ジャッジ日時 2024-05-06 02:51:00
合計ジャッジ時間 4,140 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 58 ms
17,108 KB
testcase_05 AC 146 ms
32,528 KB
testcase_06 AC 143 ms
32,244 KB
testcase_07 AC 143 ms
32,244 KB
testcase_08 AC 145 ms
32,512 KB
testcase_09 AC 27 ms
10,496 KB
testcase_10 AC 46 ms
16,260 KB
testcase_11 AC 90 ms
27,392 KB
testcase_12 AC 74 ms
23,072 KB
testcase_13 AC 60 ms
17,208 KB
testcase_14 AC 89 ms
22,344 KB
testcase_15 AC 34 ms
12,288 KB
testcase_16 AC 134 ms
29,680 KB
testcase_17 AC 51 ms
15,472 KB
testcase_18 AC 53 ms
16,568 KB
testcase_19 AC 78 ms
20,828 KB
testcase_20 AC 130 ms
30,256 KB
testcase_21 AC 104 ms
25,548 KB
testcase_22 AC 59 ms
17,068 KB
testcase_23 AC 67 ms
18,576 KB
testcase_24 AC 41 ms
14,036 KB
testcase_25 AC 138 ms
31,496 KB
testcase_26 AC 112 ms
25,472 KB
testcase_27 AC 157 ms
31,976 KB
testcase_28 AC 128 ms
28,912 KB
testcase_29 AC 111 ms
27,024 KB
testcase_30 AC 45 ms
14,600 KB
testcase_31 AC 75 ms
20,108 KB
testcase_32 AC 136 ms
31,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
A=[int(_) for _ in input().split()]
A.sort()

b=True
for i in range(n):
	if k<A[i]:
		print(i,k)
		b=False
		break
	k-=A[i]

if b:
	print(n,k)
0