結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 34 ms
10,624 KB
testcase_03 WA -
testcase_04 AC 68 ms
17,132 KB
testcase_05 AC 162 ms
32,640 KB
testcase_06 AC 160 ms
32,360 KB
testcase_07 AC 165 ms
32,364 KB
testcase_08 AC 165 ms
32,516 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 52 ms
16,384 KB
testcase_11 AC 92 ms
27,392 KB
testcase_12 AC 75 ms
23,196 KB
testcase_13 AC 65 ms
17,192 KB
testcase_14 AC 95 ms
22,544 KB
testcase_15 AC 40 ms
12,288 KB
testcase_16 AC 143 ms
29,804 KB
testcase_17 AC 56 ms
15,592 KB
testcase_18 AC 62 ms
16,432 KB
testcase_19 AC 87 ms
20,704 KB
testcase_20 AC 145 ms
30,380 KB
testcase_21 AC 113 ms
25,572 KB
testcase_22 AC 66 ms
16,976 KB
testcase_23 AC 76 ms
18,576 KB
testcase_24 AC 49 ms
14,160 KB
testcase_25 AC 152 ms
31,368 KB
testcase_26 AC 114 ms
25,340 KB
testcase_27 AC 155 ms
31,972 KB
testcase_28 AC 136 ms
28,908 KB
testcase_29 AC 125 ms
27,028 KB
testcase_30 AC 49 ms
14,468 KB
testcase_31 AC 85 ms
20,032 KB
testcase_32 AC 149 ms
31,732 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, k)
else:
    print(i, k)
0