結果

問題 No.2424 Josouzai
ユーザー ShirotsumeShirotsume
提出日時 2023-08-18 21:01:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 408 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 102,708 KB
最終ジャッジ日時 2024-05-06 02:24:36
合計ジャッジ時間 4,526 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,168 KB
testcase_01 AC 43 ms
55,168 KB
testcase_02 AC 43 ms
54,912 KB
testcase_03 AC 44 ms
54,912 KB
testcase_04 AC 69 ms
76,672 KB
testcase_05 AC 134 ms
102,700 KB
testcase_06 AC 147 ms
101,028 KB
testcase_07 AC 143 ms
101,212 KB
testcase_08 AC 143 ms
102,708 KB
testcase_09 AC 52 ms
54,912 KB
testcase_10 AC 69 ms
74,624 KB
testcase_11 AC 95 ms
100,992 KB
testcase_12 AC 76 ms
91,904 KB
testcase_13 AC 69 ms
76,160 KB
testcase_14 AC 88 ms
88,704 KB
testcase_15 AC 54 ms
64,896 KB
testcase_16 AC 125 ms
97,792 KB
testcase_17 AC 65 ms
71,936 KB
testcase_18 AC 67 ms
74,752 KB
testcase_19 AC 81 ms
85,376 KB
testcase_20 AC 125 ms
97,652 KB
testcase_21 AC 98 ms
95,744 KB
testcase_22 AC 69 ms
76,160 KB
testcase_23 AC 74 ms
79,872 KB
testcase_24 AC 58 ms
69,376 KB
testcase_25 AC 136 ms
100,192 KB
testcase_26 AC 99 ms
96,128 KB
testcase_27 AC 132 ms
100,008 KB
testcase_28 AC 118 ms
97,280 KB
testcase_29 AC 107 ms
100,096 KB
testcase_30 AC 61 ms
69,504 KB
testcase_31 AC 78 ms
83,200 KB
testcase_32 AC 132 ms
99,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353

n, k = mi()

a = li()

a.sort()
a.append(inf)
cnt = 0

for v in a:
    if v <= k:
        k -= v
        cnt += 1
    else:
        print(cnt, k)
        exit()
0