結果

問題 No.2424 Josouzai
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2023-08-18 21:12:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 324 bytes
コンパイル時間 1,210 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 106,880 KB
最終ジャッジ日時 2024-05-06 02:49:58
合計ジャッジ時間 4,010 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,712 KB
testcase_01 AC 34 ms
51,968 KB
testcase_02 AC 35 ms
51,840 KB
testcase_03 AC 35 ms
51,584 KB
testcase_04 AC 63 ms
73,472 KB
testcase_05 AC 125 ms
100,552 KB
testcase_06 AC 119 ms
105,472 KB
testcase_07 AC 123 ms
105,472 KB
testcase_08 AC 125 ms
100,296 KB
testcase_09 AC 36 ms
51,328 KB
testcase_10 AC 53 ms
71,552 KB
testcase_11 AC 78 ms
97,408 KB
testcase_12 AC 70 ms
88,832 KB
testcase_13 AC 63 ms
73,472 KB
testcase_14 AC 81 ms
85,376 KB
testcase_15 AC 46 ms
62,720 KB
testcase_16 AC 111 ms
101,760 KB
testcase_17 AC 57 ms
69,248 KB
testcase_18 AC 58 ms
71,424 KB
testcase_19 AC 73 ms
82,176 KB
testcase_20 AC 110 ms
102,016 KB
testcase_21 AC 92 ms
92,416 KB
testcase_22 AC 64 ms
73,344 KB
testcase_23 AC 67 ms
77,440 KB
testcase_24 AC 53 ms
66,816 KB
testcase_25 AC 119 ms
106,880 KB
testcase_26 AC 92 ms
92,544 KB
testcase_27 AC 121 ms
105,472 KB
testcase_28 AC 105 ms
98,304 KB
testcase_29 AC 99 ms
96,128 KB
testcase_30 AC 53 ms
66,688 KB
testcase_31 AC 75 ms
79,616 KB
testcase_32 AC 125 ms
105,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

ある数が代表になるためには

・それより右に小さい数が無い

が必須

"""

import sys
from sys import stdin

N,K = map(int,input().split())

A = list(map(int,stdin.readline().split()))

A.sort()

ans = 0
for i in range(N):

    if A[i] <= K:
        K -= A[i]
        ans += 1

print (ans,K)
0