結果

問題 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
コンパイル時間 201 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,632 KB
最終ジャッジ日時 2024-11-26 21:09:50
合計ジャッジ時間 4,822 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 WA -
testcase_04 AC 71 ms
17,092 KB
testcase_05 AC 176 ms
32,632 KB
testcase_06 AC 180 ms
32,292 KB
testcase_07 AC 173 ms
32,228 KB
testcase_08 AC 172 ms
32,380 KB
testcase_09 AC 29 ms
10,496 KB
testcase_10 AC 55 ms
16,248 KB
testcase_11 AC 104 ms
27,252 KB
testcase_12 AC 85 ms
23,196 KB
testcase_13 AC 68 ms
17,312 KB
testcase_14 AC 101 ms
22,444 KB
testcase_15 AC 38 ms
12,416 KB
testcase_16 AC 150 ms
29,668 KB
testcase_17 AC 58 ms
15,460 KB
testcase_18 AC 63 ms
16,304 KB
testcase_19 AC 90 ms
20,820 KB
testcase_20 AC 152 ms
30,068 KB
testcase_21 AC 121 ms
25,536 KB
testcase_22 AC 68 ms
17,188 KB
testcase_23 AC 77 ms
18,696 KB
testcase_24 AC 50 ms
14,284 KB
testcase_25 AC 161 ms
31,488 KB
testcase_26 AC 123 ms
25,332 KB
testcase_27 AC 169 ms
31,964 KB
testcase_28 AC 145 ms
28,900 KB
testcase_29 AC 130 ms
27,272 KB
testcase_30 AC 51 ms
14,592 KB
testcase_31 AC 89 ms
20,148 KB
testcase_32 AC 168 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