結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,496 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 32 ms
10,496 KB
testcase_03 WA -
testcase_04 AC 67 ms
17,136 KB
testcase_05 AC 166 ms
32,516 KB
testcase_06 AC 171 ms
32,232 KB
testcase_07 AC 166 ms
32,104 KB
testcase_08 AC 165 ms
32,508 KB
testcase_09 AC 31 ms
10,496 KB
testcase_10 AC 53 ms
16,252 KB
testcase_11 AC 94 ms
27,388 KB
testcase_12 AC 76 ms
22,940 KB
testcase_13 AC 65 ms
17,188 KB
testcase_14 AC 95 ms
22,336 KB
testcase_15 AC 38 ms
12,416 KB
testcase_16 AC 140 ms
29,548 KB
testcase_17 AC 57 ms
15,332 KB
testcase_18 AC 62 ms
16,432 KB
testcase_19 AC 88 ms
20,680 KB
testcase_20 AC 144 ms
30,132 KB
testcase_21 AC 113 ms
25,552 KB
testcase_22 AC 65 ms
17,032 KB
testcase_23 AC 74 ms
18,444 KB
testcase_24 AC 49 ms
14,080 KB
testcase_25 AC 149 ms
31,368 KB
testcase_26 AC 116 ms
25,336 KB
testcase_27 AC 161 ms
31,840 KB
testcase_28 AC 142 ms
28,780 KB
testcase_29 AC 123 ms
27,028 KB
testcase_30 AC 50 ms
14,396 KB
testcase_31 AC 82 ms
20,024 KB
testcase_32 AC 150 ms
31,664 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)
    exit()
for i in range(len(c)):
    e+=c[i]
    if e>=b:
        e-=c[i]
        break
print(i,b-e)
0