結果

問題 No.2424 Josouzai
ユーザー taro2023taro2023
提出日時 2023-08-18 21:25:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 217 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 32,512 KB
最終ジャッジ日時 2024-11-28 05:36:15
合計ジャッジ時間 4,383 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 31 ms
10,368 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 WA -
testcase_04 AC 64 ms
17,144 KB
testcase_05 AC 153 ms
32,508 KB
testcase_06 AC 157 ms
32,100 KB
testcase_07 AC 153 ms
32,232 KB
testcase_08 AC 154 ms
32,512 KB
testcase_09 AC 29 ms
10,496 KB
testcase_10 AC 50 ms
16,256 KB
testcase_11 AC 91 ms
27,256 KB
testcase_12 AC 76 ms
23,064 KB
testcase_13 AC 64 ms
17,056 KB
testcase_14 AC 92 ms
22,316 KB
testcase_15 AC 38 ms
12,288 KB
testcase_16 AC 136 ms
29,668 KB
testcase_17 AC 55 ms
15,460 KB
testcase_18 AC 60 ms
16,304 KB
testcase_19 AC 83 ms
20,696 KB
testcase_20 AC 135 ms
30,132 KB
testcase_21 AC 107 ms
25,544 KB
testcase_22 AC 63 ms
17,032 KB
testcase_23 AC 71 ms
18,444 KB
testcase_24 AC 46 ms
14,208 KB
testcase_25 AC 140 ms
31,364 KB
testcase_26 AC 109 ms
25,212 KB
testcase_27 AC 146 ms
31,832 KB
testcase_28 AC 127 ms
28,912 KB
testcase_29 AC 115 ms
26,900 KB
testcase_30 AC 48 ms
14,396 KB
testcase_31 AC 81 ms
20,020 KB
testcase_32 AC 142 ms
31,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b= map(int, input().split())
c = list(map(int, input().split()))
c=sorted(c)
e=0
if c[0]>b:
    print(0,b-c[0])
    exit()
for i in range(len(c)):
    e+=c[i]
    if e>=b:
        e-=c[i]
        break
print(i,b-e)
0