結果

問題 No.2424 Josouzai
ユーザー ohanaohana
提出日時 2023-08-25 12:43:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 173 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 107,520 KB
最終ジャッジ日時 2024-06-06 07:19:07
合計ジャッジ時間 4,842 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,816 KB
testcase_01 AC 35 ms
53,244 KB
testcase_02 AC 35 ms
53,164 KB
testcase_03 AC 38 ms
52,624 KB
testcase_04 AC 88 ms
75,200 KB
testcase_05 AC 126 ms
102,104 KB
testcase_06 AC 119 ms
107,300 KB
testcase_07 AC 124 ms
107,308 KB
testcase_08 AC 127 ms
101,856 KB
testcase_09 AC 35 ms
52,752 KB
testcase_10 AC 47 ms
71,608 KB
testcase_11 AC 72 ms
98,028 KB
testcase_12 AC 63 ms
89,048 KB
testcase_13 AC 58 ms
73,504 KB
testcase_14 AC 77 ms
86,320 KB
testcase_15 AC 43 ms
62,248 KB
testcase_16 AC 106 ms
102,472 KB
testcase_17 AC 53 ms
70,788 KB
testcase_18 AC 56 ms
72,736 KB
testcase_19 AC 71 ms
82,060 KB
testcase_20 AC 104 ms
103,108 KB
testcase_21 AC 88 ms
93,092 KB
testcase_22 AC 58 ms
72,704 KB
testcase_23 AC 64 ms
76,672 KB
testcase_24 AC 50 ms
66,304 KB
testcase_25 AC 107 ms
107,520 KB
testcase_26 AC 86 ms
92,792 KB
testcase_27 AC 117 ms
107,188 KB
testcase_28 AC 103 ms
98,776 KB
testcase_29 AC 95 ms
96,572 KB
testcase_30 AC 49 ms
67,256 KB
testcase_31 AC 69 ms
80,584 KB
testcase_32 AC 113 ms
107,396 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