結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,496 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 25 ms
10,496 KB
testcase_03 WA -
testcase_04 AC 55 ms
17,012 KB
testcase_05 AC 136 ms
32,512 KB
testcase_06 AC 133 ms
32,104 KB
testcase_07 AC 133 ms
32,348 KB
testcase_08 AC 139 ms
32,388 KB
testcase_09 AC 26 ms
10,496 KB
testcase_10 AC 44 ms
16,256 KB
testcase_11 AC 82 ms
27,384 KB
testcase_12 AC 67 ms
22,940 KB
testcase_13 AC 57 ms
17,316 KB
testcase_14 AC 83 ms
22,316 KB
testcase_15 AC 33 ms
12,288 KB
testcase_16 AC 122 ms
29,552 KB
testcase_17 AC 50 ms
15,460 KB
testcase_18 AC 53 ms
16,472 KB
testcase_19 AC 72 ms
20,700 KB
testcase_20 AC 121 ms
30,260 KB
testcase_21 AC 96 ms
25,420 KB
testcase_22 AC 54 ms
17,036 KB
testcase_23 AC 64 ms
18,464 KB
testcase_24 AC 42 ms
14,172 KB
testcase_25 AC 127 ms
31,372 KB
testcase_26 AC 100 ms
25,204 KB
testcase_27 AC 131 ms
31,712 KB
testcase_28 AC 113 ms
28,784 KB
testcase_29 AC 105 ms
27,028 KB
testcase_30 AC 43 ms
14,524 KB
testcase_31 AC 69 ms
20,028 KB
testcase_32 AC 125 ms
31,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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