結果

問題 No.2424 Josouzai
ユーザー GrayCoderGrayCoder
提出日時 2023-08-18 21:46:55
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 498 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,144 KB
最終ジャッジ日時 2024-11-28 06:27:34
合計ジャッジ時間 4,389 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 WA -
testcase_04 AC 59 ms
17,156 KB
testcase_05 AC 141 ms
33,144 KB
testcase_06 AC 139 ms
32,992 KB
testcase_07 AC 138 ms
33,116 KB
testcase_08 AC 143 ms
33,144 KB
testcase_09 AC 27 ms
10,624 KB
testcase_10 AC 46 ms
16,228 KB
testcase_11 AC 85 ms
28,216 KB
testcase_12 AC 71 ms
23,100 KB
testcase_13 AC 60 ms
17,208 KB
testcase_14 AC 86 ms
22,468 KB
testcase_15 AC 36 ms
12,288 KB
testcase_16 AC 129 ms
29,692 KB
testcase_17 AC 50 ms
15,480 KB
testcase_18 AC 53 ms
16,532 KB
testcase_19 AC 76 ms
21,448 KB
testcase_20 AC 124 ms
29,836 KB
testcase_21 AC 99 ms
26,112 KB
testcase_22 AC 57 ms
17,172 KB
testcase_23 AC 67 ms
18,588 KB
testcase_24 AC 43 ms
14,092 KB
testcase_25 AC 133 ms
31,520 KB
testcase_26 AC 104 ms
25,356 KB
testcase_27 AC 142 ms
31,860 KB
testcase_28 AC 119 ms
28,560 KB
testcase_29 AC 109 ms
28,212 KB
testcase_30 AC 45 ms
14,288 KB
testcase_31 AC 75 ms
20,052 KB
testcase_32 AC 139 ms
31,412 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:
            print(ans, K)
            break


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