結果

問題 No.2424 Josouzai
ユーザー GrayCoderGrayCoder
提出日時 2023-08-18 21:50:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 490 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 33,276 KB
最終ジャッジ日時 2024-11-28 06:36:02
合計ジャッジ時間 4,509 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 32 ms
10,496 KB
testcase_03 AC 32 ms
10,496 KB
testcase_04 AC 64 ms
17,032 KB
testcase_05 AC 157 ms
33,020 KB
testcase_06 AC 152 ms
32,996 KB
testcase_07 AC 152 ms
32,728 KB
testcase_08 AC 154 ms
33,276 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 51 ms
16,160 KB
testcase_11 AC 91 ms
28,156 KB
testcase_12 AC 75 ms
23,096 KB
testcase_13 AC 65 ms
17,076 KB
testcase_14 AC 94 ms
22,344 KB
testcase_15 AC 39 ms
12,288 KB
testcase_16 AC 136 ms
29,696 KB
testcase_17 AC 55 ms
15,484 KB
testcase_18 AC 60 ms
16,528 KB
testcase_19 AC 84 ms
21,456 KB
testcase_20 AC 138 ms
29,828 KB
testcase_21 AC 110 ms
25,940 KB
testcase_22 AC 62 ms
16,920 KB
testcase_23 AC 73 ms
18,332 KB
testcase_24 AC 47 ms
14,096 KB
testcase_25 AC 141 ms
31,268 KB
testcase_26 AC 110 ms
25,240 KB
testcase_27 AC 148 ms
31,608 KB
testcase_28 AC 134 ms
28,500 KB
testcase_29 AC 120 ms
28,080 KB
testcase_30 AC 49 ms
14,152 KB
testcase_31 AC 80 ms
19,876 KB
testcase_32 AC 149 ms
31,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys


def main():
    sys.setrecursionlimit(100000)
    input = lambda: sys.stdin.readline()[:-1]
    N, K = map(int, input().split())
    A = list(map(int, input().split()))

    A.sort()
    ans = 0
    for ai in A:
        if K >= ai:
            ans += 1
            K -= ai
        else:
            break
    print(ans, K)


if not __debug__:
    f = open(sys.argv[1], "r")
    sys.stdin = f

try:
    sys.set_int_max_str_digits(100000)
except AttributeError:
    pass

main()
0