結果

問題 No.2424 Josouzai
ユーザー ShirotsumeShirotsume
提出日時 2023-08-18 21:01:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 408 bytes
コンパイル時間 496 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 102,448 KB
最終ジャッジ日時 2024-11-28 04:35:28
合計ジャッジ時間 4,723 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
54,912 KB
testcase_01 AC 51 ms
54,528 KB
testcase_02 AC 49 ms
55,040 KB
testcase_03 AC 48 ms
54,784 KB
testcase_04 AC 78 ms
76,672 KB
testcase_05 AC 150 ms
102,448 KB
testcase_06 AC 148 ms
100,572 KB
testcase_07 AC 146 ms
101,076 KB
testcase_08 AC 147 ms
102,184 KB
testcase_09 AC 49 ms
54,400 KB
testcase_10 AC 64 ms
74,368 KB
testcase_11 AC 92 ms
101,120 KB
testcase_12 AC 82 ms
91,648 KB
testcase_13 AC 79 ms
76,160 KB
testcase_14 AC 96 ms
88,320 KB
testcase_15 AC 60 ms
64,768 KB
testcase_16 AC 137 ms
98,304 KB
testcase_17 AC 70 ms
72,064 KB
testcase_18 AC 74 ms
74,496 KB
testcase_19 AC 89 ms
85,120 KB
testcase_20 AC 134 ms
98,028 KB
testcase_21 AC 105 ms
95,872 KB
testcase_22 AC 76 ms
76,288 KB
testcase_23 AC 81 ms
80,128 KB
testcase_24 AC 64 ms
69,248 KB
testcase_25 AC 141 ms
100,064 KB
testcase_26 AC 105 ms
96,000 KB
testcase_27 AC 144 ms
100,224 KB
testcase_28 AC 128 ms
97,408 KB
testcase_29 AC 112 ms
99,328 KB
testcase_30 AC 63 ms
69,120 KB
testcase_31 AC 85 ms
83,072 KB
testcase_32 AC 138 ms
100,040 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