結果

問題 No.2424 Josouzai
ユーザー Meso MesoMeso Meso
提出日時 2024-04-09 20:39:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 139 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,632 KB
最終ジャッジ日時 2024-10-01 20:59:27
合計ジャッジ時間 5,921 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,496 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 WA -
testcase_04 AC 65 ms
17,096 KB
testcase_05 AC 155 ms
32,632 KB
testcase_06 AC 153 ms
32,224 KB
testcase_07 AC 157 ms
32,352 KB
testcase_08 AC 156 ms
32,504 KB
testcase_09 AC 30 ms
10,496 KB
testcase_10 AC 51 ms
16,372 KB
testcase_11 AC 91 ms
27,380 KB
testcase_12 AC 76 ms
23,064 KB
testcase_13 AC 65 ms
17,184 KB
testcase_14 AC 95 ms
22,316 KB
testcase_15 AC 39 ms
12,288 KB
testcase_16 AC 138 ms
29,536 KB
testcase_17 AC 55 ms
15,456 KB
testcase_18 AC 60 ms
16,552 KB
testcase_19 AC 84 ms
20,688 KB
testcase_20 AC 138 ms
29,812 KB
testcase_21 AC 109 ms
25,668 KB
testcase_22 AC 65 ms
17,028 KB
testcase_23 AC 72 ms
18,564 KB
testcase_24 AC 47 ms
14,080 KB
testcase_25 AC 145 ms
31,492 KB
testcase_26 AC 112 ms
25,328 KB
testcase_27 AC 153 ms
31,960 KB
testcase_28 AC 130 ms
29,028 KB
testcase_29 AC 119 ms
27,024 KB
testcase_30 AC 49 ms
14,388 KB
testcase_31 AC 81 ms
20,152 KB
testcase_32 AC 147 ms
31,648 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
print(i, k)
0