結果

問題 No.2424 Josouzai
ユーザー Nikkuniku029Nikkuniku029
提出日時 2023-08-18 21:02:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 175 ms / 2,000 ms
コード長 183 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 32,504 KB
最終ジャッジ日時 2024-05-06 02:27:25
合計ジャッジ時間 4,936 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,496 KB
testcase_01 AC 33 ms
10,496 KB
testcase_02 AC 33 ms
10,496 KB
testcase_03 AC 33 ms
10,496 KB
testcase_04 AC 71 ms
16,960 KB
testcase_05 AC 175 ms
32,504 KB
testcase_06 AC 163 ms
32,096 KB
testcase_07 AC 163 ms
32,256 KB
testcase_08 AC 162 ms
32,424 KB
testcase_09 AC 32 ms
10,496 KB
testcase_10 AC 52 ms
16,372 KB
testcase_11 AC 96 ms
27,292 KB
testcase_12 AC 78 ms
23,060 KB
testcase_13 AC 67 ms
17,180 KB
testcase_14 AC 96 ms
22,436 KB
testcase_15 AC 39 ms
12,160 KB
testcase_16 AC 145 ms
29,664 KB
testcase_17 AC 58 ms
15,452 KB
testcase_18 AC 63 ms
16,424 KB
testcase_19 AC 86 ms
20,688 KB
testcase_20 AC 142 ms
30,380 KB
testcase_21 AC 113 ms
25,412 KB
testcase_22 AC 64 ms
17,024 KB
testcase_23 AC 73 ms
18,436 KB
testcase_24 AC 48 ms
14,072 KB
testcase_25 AC 151 ms
31,240 KB
testcase_26 AC 113 ms
25,324 KB
testcase_27 AC 157 ms
31,828 KB
testcase_28 AC 133 ms
28,904 KB
testcase_29 AC 122 ms
26,892 KB
testcase_30 AC 50 ms
14,384 KB
testcase_31 AC 83 ms
20,148 KB
testcase_32 AC 152 ms
31,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(int, input().split()))
A.sort()
ans = 0
for a in A:
    if K >= a:
        K -= a
        ans += 1
    else:
        break
print(ans, K)
0