結果

問題 No.2424 Josouzai
ユーザー 坂口春斗坂口春斗
提出日時 2023-08-25 18:48:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 294 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 32,636 KB
最終ジャッジ日時 2024-06-06 12:56:50
合計ジャッジ時間 4,409 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,368 KB
testcase_01 AC 25 ms
10,368 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 25 ms
10,496 KB
testcase_04 AC 62 ms
16,844 KB
testcase_05 AC 146 ms
32,512 KB
testcase_06 AC 143 ms
32,232 KB
testcase_07 AC 142 ms
32,100 KB
testcase_08 AC 143 ms
32,636 KB
testcase_09 AC 25 ms
10,496 KB
testcase_10 AC 44 ms
16,380 KB
testcase_11 AC 87 ms
27,392 KB
testcase_12 AC 71 ms
23,072 KB
testcase_13 AC 57 ms
17,316 KB
testcase_14 AC 87 ms
22,316 KB
testcase_15 AC 33 ms
12,416 KB
testcase_16 AC 132 ms
29,672 KB
testcase_17 AC 49 ms
15,460 KB
testcase_18 AC 55 ms
16,432 KB
testcase_19 AC 77 ms
20,444 KB
testcase_20 AC 130 ms
29,812 KB
testcase_21 AC 104 ms
25,536 KB
testcase_22 AC 57 ms
17,024 KB
testcase_23 AC 66 ms
18,568 KB
testcase_24 AC 41 ms
14,080 KB
testcase_25 AC 133 ms
31,488 KB
testcase_26 AC 105 ms
25,204 KB
testcase_27 AC 142 ms
31,840 KB
testcase_28 AC 123 ms
28,900 KB
testcase_29 AC 109 ms
26,888 KB
testcase_30 AC 44 ms
14,604 KB
testcase_31 AC 74 ms
19,896 KB
testcase_32 AC 137 ms
31,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

lands_cnt, drugs_cnt = map(int,input().split())
lands_list = [*map(int,input().split())]
sorted_lands_list =sorted(lands_list)

withered_lands_cnt = 0
for i in sorted_lands_list:
    if drugs_cnt >= i:
        drugs_cnt -= i
        withered_lands_cnt += 1

print(withered_lands_cnt, drugs_cnt)
0