結果

問題 No.2424 Josouzai
ユーザー GrayCoderGrayCoder
提出日時 2023-08-18 21:46:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 498 bytes
コンパイル時間 512 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,272 KB
最終ジャッジ日時 2024-05-06 03:44:41
合計ジャッジ時間 4,157 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 WA -
testcase_04 AC 59 ms
17,280 KB
testcase_05 AC 140 ms
33,272 KB
testcase_06 AC 136 ms
32,988 KB
testcase_07 AC 138 ms
32,996 KB
testcase_08 AC 145 ms
33,272 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 AC 48 ms
16,408 KB
testcase_11 AC 87 ms
28,156 KB
testcase_12 AC 69 ms
23,100 KB
testcase_13 AC 60 ms
17,204 KB
testcase_14 AC 86 ms
22,472 KB
testcase_15 AC 35 ms
12,416 KB
testcase_16 AC 130 ms
29,820 KB
testcase_17 AC 51 ms
15,484 KB
testcase_18 AC 55 ms
16,656 KB
testcase_19 AC 79 ms
21,452 KB
testcase_20 AC 130 ms
29,836 KB
testcase_21 AC 106 ms
26,060 KB
testcase_22 AC 60 ms
17,176 KB
testcase_23 AC 67 ms
18,592 KB
testcase_24 AC 44 ms
14,096 KB
testcase_25 AC 133 ms
31,392 KB
testcase_26 AC 102 ms
25,488 KB
testcase_27 AC 138 ms
31,864 KB
testcase_28 AC 123 ms
28,632 KB
testcase_29 AC 108 ms
28,336 KB
testcase_30 AC 47 ms
14,408 KB
testcase_31 AC 76 ms
20,048 KB
testcase_32 AC 138 ms
31,408 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