結果

問題 No.2424 Josouzai
ユーザー sotanishysotanishy
提出日時 2023-08-18 21:22:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 195 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 107,392 KB
最終ジャッジ日時 2024-05-06 03:09:47
合計ジャッジ時間 4,381 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,840 KB
testcase_01 AC 33 ms
51,584 KB
testcase_02 AC 34 ms
51,584 KB
testcase_03 AC 35 ms
52,096 KB
testcase_04 AC 64 ms
73,344 KB
testcase_05 AC 132 ms
101,888 KB
testcase_06 AC 122 ms
107,392 KB
testcase_07 AC 121 ms
107,008 KB
testcase_08 AC 126 ms
101,632 KB
testcase_09 AC 36 ms
51,712 KB
testcase_10 AC 52 ms
71,808 KB
testcase_11 AC 80 ms
97,920 KB
testcase_12 AC 71 ms
88,448 KB
testcase_13 AC 63 ms
73,088 KB
testcase_14 AC 81 ms
85,376 KB
testcase_15 AC 47 ms
61,312 KB
testcase_16 AC 111 ms
102,400 KB
testcase_17 AC 60 ms
68,992 KB
testcase_18 AC 60 ms
71,552 KB
testcase_19 AC 74 ms
81,920 KB
testcase_20 AC 110 ms
103,168 KB
testcase_21 AC 91 ms
92,544 KB
testcase_22 AC 62 ms
73,216 KB
testcase_23 AC 66 ms
76,672 KB
testcase_24 AC 51 ms
66,048 KB
testcase_25 AC 114 ms
106,880 KB
testcase_26 AC 94 ms
92,800 KB
testcase_27 AC 121 ms
107,264 KB
testcase_28 AC 106 ms
98,432 KB
testcase_29 AC 100 ms
96,640 KB
testcase_30 AC 54 ms
66,432 KB
testcase_31 AC 74 ms
80,000 KB
testcase_32 AC 122 ms
107,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(int, input().split()))
A.sort()
s = 0
cnt = 0
for x in A:
    if s + x <= K:
        s += x
        cnt += 1
    else:
        break
print(cnt, K-s)
0