結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 40 ms
51,328 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 67 ms
73,216 KB
testcase_05 AC 134 ms
101,888 KB
testcase_06 AC 125 ms
107,280 KB
testcase_07 AC 126 ms
107,008 KB
testcase_08 AC 131 ms
101,760 KB
testcase_09 AC 38 ms
51,584 KB
testcase_10 AC 55 ms
71,552 KB
testcase_11 AC 77 ms
97,536 KB
testcase_12 AC 69 ms
88,576 KB
testcase_13 AC 63 ms
73,088 KB
testcase_14 AC 83 ms
85,632 KB
testcase_15 AC 46 ms
61,696 KB
testcase_16 AC 113 ms
102,656 KB
testcase_17 AC 58 ms
68,992 KB
testcase_18 AC 62 ms
71,808 KB
testcase_19 AC 78 ms
81,920 KB
testcase_20 AC 112 ms
102,912 KB
testcase_21 AC 94 ms
93,056 KB
testcase_22 AC 64 ms
73,088 KB
testcase_23 AC 70 ms
76,800 KB
testcase_24 AC 54 ms
65,536 KB
testcase_25 AC 120 ms
107,392 KB
testcase_26 AC 95 ms
93,184 KB
testcase_27 AC 126 ms
107,192 KB
testcase_28 AC 110 ms
98,304 KB
testcase_29 AC 103 ms
96,768 KB
testcase_30 AC 54 ms
66,176 KB
testcase_31 AC 75 ms
79,360 KB
testcase_32 AC 122 ms
107,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
A=list(map(int,input().split()))
A.sort()
sum=0
ans=0
for i in range(N):
    sum+=A[i]
    if sum>K:
        sum-=A[i]
        break
    ans+=1
print(ans,K-sum)
0