結果

問題 No.2424 Josouzai
ユーザー ramdosramdos
提出日時 2023-08-15 16:54:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 143 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,632 KB
最終ジャッジ日時 2024-05-05 03:46:24
合計ジャッジ時間 4,932 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 WA -
testcase_04 AC 70 ms
17,220 KB
testcase_05 AC 181 ms
32,632 KB
testcase_06 AC 183 ms
32,484 KB
testcase_07 AC 185 ms
32,224 KB
testcase_08 AC 192 ms
32,632 KB
testcase_09 AC 31 ms
10,624 KB
testcase_10 AC 55 ms
16,376 KB
testcase_11 AC 106 ms
27,512 KB
testcase_12 AC 87 ms
23,188 KB
testcase_13 AC 70 ms
17,312 KB
testcase_14 AC 108 ms
22,568 KB
testcase_15 AC 40 ms
12,416 KB
testcase_16 AC 162 ms
29,796 KB
testcase_17 AC 60 ms
15,464 KB
testcase_18 AC 67 ms
16,556 KB
testcase_19 AC 95 ms
20,696 KB
testcase_20 AC 164 ms
29,932 KB
testcase_21 AC 122 ms
25,792 KB
testcase_22 AC 68 ms
17,060 KB
testcase_23 AC 79 ms
18,692 KB
testcase_24 AC 50 ms
14,284 KB
testcase_25 AC 172 ms
31,360 KB
testcase_26 AC 129 ms
25,460 KB
testcase_27 AC 174 ms
31,960 KB
testcase_28 AC 153 ms
29,024 KB
testcase_29 AC 135 ms
27,140 KB
testcase_30 AC 52 ms
14,460 KB
testcase_31 AC 90 ms
20,020 KB
testcase_32 AC 175 ms
31,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b=map(int,input().split())
x=sorted(list(map(int,input().split())))
ans=0
for c in x :
    if c < b:
        b-=c
        ans+=1
print(ans,b)
0