結果

問題 No.2424 Josouzai
ユーザー pluto77pluto77
提出日時 2023-08-22 10:40:59
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 138 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,500 KB
最終ジャッジ日時 2024-12-16 06:48:04
合計ジャッジ時間 5,145 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 31 ms
10,496 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 WA -
testcase_04 AC 66 ms
17,220 KB
testcase_05 AC 160 ms
32,496 KB
testcase_06 AC 157 ms
32,348 KB
testcase_07 AC 162 ms
32,348 KB
testcase_08 AC 159 ms
32,500 KB
testcase_09 AC 31 ms
10,496 KB
testcase_10 AC 51 ms
16,116 KB
testcase_11 AC 94 ms
27,376 KB
testcase_12 AC 77 ms
23,184 KB
testcase_13 AC 66 ms
17,052 KB
testcase_14 AC 98 ms
22,564 KB
testcase_15 AC 40 ms
12,416 KB
testcase_16 AC 142 ms
29,792 KB
testcase_17 AC 58 ms
15,456 KB
testcase_18 AC 62 ms
16,552 KB
testcase_19 AC 87 ms
20,688 KB
testcase_20 AC 144 ms
30,376 KB
testcase_21 AC 113 ms
25,544 KB
testcase_22 AC 65 ms
17,276 KB
testcase_23 AC 74 ms
18,564 KB
testcase_24 AC 48 ms
14,200 KB
testcase_25 AC 146 ms
31,368 KB
testcase_26 AC 113 ms
25,328 KB
testcase_27 AC 166 ms
31,708 KB
testcase_28 AC 136 ms
29,028 KB
testcase_29 AC 125 ms
27,144 KB
testcase_30 AC 51 ms
14,516 KB
testcase_31 AC 82 ms
20,152 KB
testcase_32 AC 151 ms
31,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
a=list(map(int,input().split()))
a.sort()
s=0
for i in range(n):
 s+=a[i]
 if s>k:
  break
print(i,k-s+a[i])
0