結果

問題 No.2424 Josouzai
ユーザー ohanaohana
提出日時 2023-08-25 12:43:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 173 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 107,476 KB
最終ジャッジ日時 2024-12-23 20:09:49
合計ジャッジ時間 5,602 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,712 KB
testcase_01 AC 42 ms
51,584 KB
testcase_02 AC 43 ms
51,712 KB
testcase_03 AC 42 ms
51,712 KB
testcase_04 AC 68 ms
73,600 KB
testcase_05 AC 140 ms
102,044 KB
testcase_06 AC 130 ms
106,976 KB
testcase_07 AC 133 ms
107,180 KB
testcase_08 AC 139 ms
101,936 KB
testcase_09 AC 42 ms
52,224 KB
testcase_10 AC 56 ms
71,296 KB
testcase_11 AC 84 ms
98,048 KB
testcase_12 AC 74 ms
88,832 KB
testcase_13 AC 68 ms
73,344 KB
testcase_14 AC 88 ms
85,616 KB
testcase_15 AC 49 ms
61,696 KB
testcase_16 AC 119 ms
102,656 KB
testcase_17 AC 60 ms
68,992 KB
testcase_18 AC 63 ms
71,552 KB
testcase_19 AC 81 ms
82,304 KB
testcase_20 AC 120 ms
103,048 KB
testcase_21 AC 98 ms
93,184 KB
testcase_22 AC 67 ms
73,212 KB
testcase_23 AC 73 ms
76,928 KB
testcase_24 AC 56 ms
66,176 KB
testcase_25 AC 124 ms
107,264 KB
testcase_26 AC 102 ms
93,056 KB
testcase_27 AC 131 ms
107,476 KB
testcase_28 AC 123 ms
99,072 KB
testcase_29 AC 113 ms
96,640 KB
testcase_30 AC 59 ms
66,688 KB
testcase_31 AC 78 ms
80,072 KB
testcase_32 AC 129 ms
107,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
la = list(map(int, input().split()))
la.sort()

ans = 0
for i in la:
    if k - i < 0:
        break
    ans += 1
    k -= i

print(ans, k)
0