結果

問題 No.2424 Josouzai
ユーザー Meso MesoMeso Meso
提出日時 2024-04-09 20:45:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 176 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,640 KB
最終ジャッジ日時 2024-10-01 21:08:18
合計ジャッジ時間 4,540 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 62 ms
17,140 KB
testcase_05 AC 151 ms
32,380 KB
testcase_06 AC 149 ms
32,364 KB
testcase_07 AC 148 ms
32,364 KB
testcase_08 AC 149 ms
32,640 KB
testcase_09 AC 28 ms
10,624 KB
testcase_10 AC 49 ms
16,256 KB
testcase_11 AC 87 ms
27,260 KB
testcase_12 AC 72 ms
23,200 KB
testcase_13 AC 61 ms
17,188 KB
testcase_14 AC 89 ms
22,320 KB
testcase_15 AC 36 ms
12,288 KB
testcase_16 AC 130 ms
29,676 KB
testcase_17 AC 51 ms
15,592 KB
testcase_18 AC 59 ms
16,560 KB
testcase_19 AC 82 ms
20,700 KB
testcase_20 AC 130 ms
30,392 KB
testcase_21 AC 106 ms
25,672 KB
testcase_22 AC 60 ms
17,064 KB
testcase_23 AC 69 ms
18,612 KB
testcase_24 AC 46 ms
14,160 KB
testcase_25 AC 134 ms
31,492 KB
testcase_26 AC 104 ms
25,464 KB
testcase_27 AC 145 ms
31,712 KB
testcase_28 AC 129 ms
28,908 KB
testcase_29 AC 113 ms
27,024 KB
testcase_30 AC 46 ms
14,340 KB
testcase_31 AC 78 ms
20,156 KB
testcase_32 AC 138 ms
31,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
A = list(map(int, input().split()))

A.sort()

i = 0
while k > A[i]:
    k -= A[i]
    i += 1

if i == 0:
    print(1, 0)
else:
    print(i, k)
0