結果

問題 No.2424 Josouzai
ユーザー chebrinkochebrinko
提出日時 2023-08-11 18:23:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 202 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 107,392 KB
最終ジャッジ日時 2024-11-26 21:09:14
合計ジャッジ時間 5,400 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,456 KB
testcase_01 AC 38 ms
51,456 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 71 ms
73,600 KB
testcase_05 AC 131 ms
102,108 KB
testcase_06 AC 122 ms
107,008 KB
testcase_07 AC 123 ms
107,108 KB
testcase_08 AC 132 ms
101,760 KB
testcase_09 AC 38 ms
52,224 KB
testcase_10 AC 55 ms
71,680 KB
testcase_11 AC 78 ms
98,176 KB
testcase_12 AC 70 ms
88,704 KB
testcase_13 AC 64 ms
73,472 KB
testcase_14 AC 83 ms
85,632 KB
testcase_15 AC 47 ms
61,696 KB
testcase_16 AC 111 ms
102,656 KB
testcase_17 AC 57 ms
69,120 KB
testcase_18 AC 62 ms
71,680 KB
testcase_19 AC 77 ms
81,792 KB
testcase_20 AC 110 ms
103,424 KB
testcase_21 AC 94 ms
93,036 KB
testcase_22 AC 63 ms
73,088 KB
testcase_23 AC 69 ms
76,672 KB
testcase_24 AC 52 ms
66,176 KB
testcase_25 AC 115 ms
106,880 KB
testcase_26 AC 95 ms
93,056 KB
testcase_27 AC 121 ms
107,392 KB
testcase_28 AC 106 ms
98,944 KB
testcase_29 AC 101 ms
96,896 KB
testcase_30 AC 54 ms
66,304 KB
testcase_31 AC 74 ms
79,784 KB
testcase_32 AC 122 ms
107,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

A.sort()
x = 0
y = N

for i in range(N):
    x += A[i]
    if x > K:
        x -= A[i]
        y = i
        break

print(y, K - x)
0