結果

問題 No.2424 Josouzai
ユーザー taro2023taro2023
提出日時 2023-08-18 22:43:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,132 KB
最終ジャッジ日時 2024-11-28 08:52:07
合計ジャッジ時間 4,488 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 61 ms
17,012 KB
testcase_05 AC 143 ms
33,008 KB
testcase_06 AC 144 ms
32,972 KB
testcase_07 AC 138 ms
32,972 KB
testcase_08 AC 141 ms
33,132 KB
testcase_09 AC 27 ms
10,624 KB
testcase_10 AC 46 ms
16,256 KB
testcase_11 AC 85 ms
28,128 KB
testcase_12 AC 70 ms
22,948 KB
testcase_13 AC 59 ms
17,192 KB
testcase_14 AC 84 ms
22,456 KB
testcase_15 AC 33 ms
12,416 KB
testcase_16 AC 121 ms
29,552 KB
testcase_17 AC 48 ms
15,344 KB
testcase_18 AC 54 ms
16,392 KB
testcase_19 AC 75 ms
21,304 KB
testcase_20 AC 125 ms
29,560 KB
testcase_21 AC 100 ms
25,812 KB
testcase_22 AC 57 ms
16,900 KB
testcase_23 AC 66 ms
18,452 KB
testcase_24 AC 42 ms
14,208 KB
testcase_25 AC 129 ms
31,376 KB
testcase_26 AC 98 ms
25,088 KB
testcase_27 AC 132 ms
31,716 KB
testcase_28 AC 116 ms
28,616 KB
testcase_29 AC 109 ms
28,088 KB
testcase_30 AC 44 ms
14,392 KB
testcase_31 AC 73 ms
19,904 KB
testcase_32 AC 139 ms
31,192 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
if i==0:
    print(i+1,b-e)
else:
    print(i,b-e)
0