結果

問題 No.2424 Josouzai
ユーザー pyt-314pyt-314
提出日時 2024-03-11 20:55:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 192 bytes
コンパイル時間 121 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,504 KB
最終ジャッジ日時 2024-09-29 22:05:18
合計ジャッジ時間 5,030 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 67 ms
16,964 KB
testcase_05 AC 163 ms
32,500 KB
testcase_06 AC 143 ms
32,224 KB
testcase_07 AC 137 ms
32,220 KB
testcase_08 AC 134 ms
32,504 KB
testcase_09 AC 26 ms
10,496 KB
testcase_10 AC 43 ms
16,372 KB
testcase_11 AC 84 ms
27,372 KB
testcase_12 AC 66 ms
23,056 KB
testcase_13 AC 56 ms
17,176 KB
testcase_14 AC 80 ms
22,440 KB
testcase_15 AC 32 ms
12,416 KB
testcase_16 AC 117 ms
29,664 KB
testcase_17 AC 47 ms
15,452 KB
testcase_18 AC 51 ms
16,420 KB
testcase_19 AC 71 ms
20,692 KB
testcase_20 AC 118 ms
30,376 KB
testcase_21 AC 94 ms
25,540 KB
testcase_22 AC 53 ms
17,024 KB
testcase_23 AC 62 ms
18,688 KB
testcase_24 AC 40 ms
14,328 KB
testcase_25 AC 124 ms
31,484 KB
testcase_26 AC 94 ms
25,328 KB
testcase_27 AC 129 ms
31,964 KB
testcase_28 AC 112 ms
28,900 KB
testcase_29 AC 103 ms
27,020 KB
testcase_30 AC 42 ms
14,516 KB
testcase_31 AC 69 ms
20,144 KB
testcase_32 AC 124 ms
31,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
a = list(map(int, input().split()))
a = sorted(a)
c = 0
for i in a:
    k -= i
    if k < 0:
        k += i
        break
    else:
        c += 1
print(c, k)
0