結果

問題 No.2424 Josouzai
ユーザー ああいいああいい
提出日時 2023-08-18 23:04:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 210 bytes
コンパイル時間 430 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 107,520 KB
最終ジャッジ日時 2024-05-06 05:35:48
合計ジャッジ時間 4,406 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,456 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 36 ms
51,712 KB
testcase_04 AC 64 ms
73,472 KB
testcase_05 AC 126 ms
102,016 KB
testcase_06 AC 131 ms
107,520 KB
testcase_07 AC 120 ms
107,136 KB
testcase_08 AC 126 ms
102,016 KB
testcase_09 AC 37 ms
51,712 KB
testcase_10 AC 54 ms
71,680 KB
testcase_11 AC 78 ms
97,664 KB
testcase_12 AC 69 ms
88,960 KB
testcase_13 AC 63 ms
73,216 KB
testcase_14 AC 82 ms
85,248 KB
testcase_15 AC 45 ms
61,952 KB
testcase_16 AC 107 ms
102,784 KB
testcase_17 AC 56 ms
68,992 KB
testcase_18 AC 58 ms
71,168 KB
testcase_19 AC 75 ms
81,792 KB
testcase_20 AC 110 ms
103,296 KB
testcase_21 AC 102 ms
93,056 KB
testcase_22 AC 65 ms
72,704 KB
testcase_23 AC 73 ms
76,928 KB
testcase_24 AC 52 ms
66,048 KB
testcase_25 AC 115 ms
107,008 KB
testcase_26 AC 92 ms
92,800 KB
testcase_27 AC 119 ms
107,520 KB
testcase_28 AC 104 ms
98,944 KB
testcase_29 AC 96 ms
96,512 KB
testcase_30 AC 53 ms
66,560 KB
testcase_31 AC 74 ms
79,488 KB
testcase_32 AC 116 ms
107,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
A = list(map(int,input().split()))
A.sort()
ans = 0
import sys
now = 0
for i in range(N):
	a = A[i]
	if now + a > K:
		print(i,K - now)
		exit()
	else:
		now += a
print(N,K - now)
0