結果

問題 No.2424 Josouzai
ユーザー ああいいああいい
提出日時 2023-08-18 23:04:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 210 bytes
コンパイル時間 402 ms
コンパイル使用メモリ 81,232 KB
実行使用メモリ 107,392 KB
最終ジャッジ日時 2024-11-28 09:40:42
合計ジャッジ時間 4,495 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,072 KB
testcase_01 AC 42 ms
51,456 KB
testcase_02 AC 43 ms
51,840 KB
testcase_03 AC 43 ms
51,712 KB
testcase_04 AC 74 ms
73,472 KB
testcase_05 AC 145 ms
101,632 KB
testcase_06 AC 135 ms
106,880 KB
testcase_07 AC 137 ms
106,624 KB
testcase_08 AC 144 ms
102,016 KB
testcase_09 AC 41 ms
51,584 KB
testcase_10 AC 59 ms
71,552 KB
testcase_11 AC 87 ms
97,280 KB
testcase_12 AC 78 ms
88,832 KB
testcase_13 AC 71 ms
72,832 KB
testcase_14 AC 94 ms
85,248 KB
testcase_15 AC 52 ms
61,440 KB
testcase_16 AC 124 ms
102,656 KB
testcase_17 AC 64 ms
68,608 KB
testcase_18 AC 68 ms
71,296 KB
testcase_19 AC 86 ms
82,048 KB
testcase_20 AC 125 ms
103,040 KB
testcase_21 AC 105 ms
92,416 KB
testcase_22 AC 70 ms
72,448 KB
testcase_23 AC 76 ms
76,928 KB
testcase_24 AC 60 ms
66,048 KB
testcase_25 AC 130 ms
107,264 KB
testcase_26 AC 104 ms
92,416 KB
testcase_27 AC 134 ms
107,392 KB
testcase_28 AC 117 ms
98,560 KB
testcase_29 AC 113 ms
96,768 KB
testcase_30 AC 59 ms
65,792 KB
testcase_31 AC 83 ms
79,488 KB
testcase_32 AC 133 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