結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,456 KB
testcase_01 AC 37 ms
51,328 KB
testcase_02 AC 36 ms
51,072 KB
testcase_03 AC 36 ms
51,456 KB
testcase_04 AC 65 ms
73,600 KB
testcase_05 AC 133 ms
101,376 KB
testcase_06 AC 128 ms
106,880 KB
testcase_07 AC 129 ms
107,136 KB
testcase_08 AC 131 ms
101,376 KB
testcase_09 AC 38 ms
51,328 KB
testcase_10 AC 55 ms
71,040 KB
testcase_11 AC 83 ms
98,048 KB
testcase_12 AC 76 ms
88,064 KB
testcase_13 AC 65 ms
72,448 KB
testcase_14 AC 84 ms
84,864 KB
testcase_15 AC 53 ms
60,800 KB
testcase_16 AC 111 ms
102,400 KB
testcase_17 AC 60 ms
68,864 KB
testcase_18 AC 62 ms
71,424 KB
testcase_19 AC 77 ms
81,792 KB
testcase_20 AC 113 ms
103,040 KB
testcase_21 AC 95 ms
92,288 KB
testcase_22 AC 67 ms
72,704 KB
testcase_23 AC 73 ms
76,800 KB
testcase_24 AC 55 ms
65,792 KB
testcase_25 AC 118 ms
107,136 KB
testcase_26 AC 96 ms
92,416 KB
testcase_27 AC 122 ms
107,264 KB
testcase_28 AC 110 ms
98,560 KB
testcase_29 AC 104 ms
96,768 KB
testcase_30 AC 56 ms
65,664 KB
testcase_31 AC 75 ms
79,872 KB
testcase_32 AC 126 ms
106,624 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