結果

問題 No.2424 Josouzai
ユーザー GrayCoderGrayCoder
提出日時 2023-08-18 21:50:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 490 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,404 KB
最終ジャッジ日時 2024-05-06 03:48:51
合計ジャッジ時間 4,261 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 25 ms
10,496 KB
testcase_04 AC 55 ms
17,152 KB
testcase_05 AC 133 ms
33,096 KB
testcase_06 AC 132 ms
32,988 KB
testcase_07 AC 131 ms
32,864 KB
testcase_08 AC 130 ms
33,404 KB
testcase_09 AC 25 ms
10,624 KB
testcase_10 AC 43 ms
16,284 KB
testcase_11 AC 76 ms
28,032 KB
testcase_12 AC 65 ms
23,112 KB
testcase_13 AC 56 ms
17,204 KB
testcase_14 AC 81 ms
22,392 KB
testcase_15 AC 36 ms
12,288 KB
testcase_16 AC 124 ms
29,696 KB
testcase_17 AC 50 ms
15,484 KB
testcase_18 AC 53 ms
16,528 KB
testcase_19 AC 75 ms
21,452 KB
testcase_20 AC 120 ms
29,832 KB
testcase_21 AC 93 ms
26,060 KB
testcase_22 AC 53 ms
16,976 KB
testcase_23 AC 60 ms
18,596 KB
testcase_24 AC 40 ms
13,968 KB
testcase_25 AC 121 ms
31,268 KB
testcase_26 AC 96 ms
25,360 KB
testcase_27 AC 132 ms
31,736 KB
testcase_28 AC 112 ms
28,500 KB
testcase_29 AC 103 ms
28,208 KB
testcase_30 AC 43 ms
14,408 KB
testcase_31 AC 68 ms
20,052 KB
testcase_32 AC 129 ms
31,280 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