結果

問題 No.2424 Josouzai
ユーザー hato336hato336
提出日時 2023-08-18 21:02:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 236 ms / 2,000 ms
コード長 485 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 81,536 KB
実行使用メモリ 123,264 KB
最終ジャッジ日時 2024-11-28 04:38:38
合計ジャッジ時間 8,144 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
85,376 KB
testcase_01 AC 143 ms
85,120 KB
testcase_02 AC 146 ms
85,504 KB
testcase_03 AC 147 ms
85,120 KB
testcase_04 AC 181 ms
97,792 KB
testcase_05 AC 236 ms
122,880 KB
testcase_06 AC 234 ms
122,368 KB
testcase_07 AC 232 ms
122,880 KB
testcase_08 AC 232 ms
123,264 KB
testcase_09 AC 143 ms
85,504 KB
testcase_10 AC 166 ms
96,128 KB
testcase_11 AC 192 ms
116,480 KB
testcase_12 AC 181 ms
109,312 KB
testcase_13 AC 176 ms
97,664 KB
testcase_14 AC 194 ms
106,240 KB
testcase_15 AC 161 ms
89,600 KB
testcase_16 AC 221 ms
118,016 KB
testcase_17 AC 170 ms
94,208 KB
testcase_18 AC 174 ms
96,512 KB
testcase_19 AC 188 ms
104,192 KB
testcase_20 AC 222 ms
118,272 KB
testcase_21 AC 207 ms
111,616 KB
testcase_22 AC 176 ms
97,152 KB
testcase_23 AC 182 ms
100,096 KB
testcase_24 AC 164 ms
92,544 KB
testcase_25 AC 228 ms
122,240 KB
testcase_26 AC 205 ms
111,360 KB
testcase_27 AC 232 ms
122,368 KB
testcase_28 AC 218 ms
115,456 KB
testcase_29 AC 215 ms
114,176 KB
testcase_30 AC 168 ms
92,416 KB
testcase_31 AC 188 ms
101,632 KB
testcase_32 AC 232 ms
121,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#n = int(input())
#
#alist = []
#s = input()
n,k = map(int,input().split())
#for i in range(n):
#    alist.append(list(map(int,input().split())))
alist = list(map(int,input().split()))
alist.append(10**18)
alist.sort()
temp = 0
ans = 0
for i in alist:
    if temp + i <= k:
        temp += i
        ans += 1
    else:
        print(ans,k-temp)
        break
0