結果

問題 No.2424 Josouzai
ユーザー machoniumpmachoniump
提出日時 2023-09-12 22:41:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 178 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 32,628 KB
最終ジャッジ日時 2024-06-30 10:13:00
合計ジャッジ時間 4,473 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 65 ms
17,220 KB
testcase_05 AC 159 ms
32,628 KB
testcase_06 AC 157 ms
32,352 KB
testcase_07 AC 157 ms
32,220 KB
testcase_08 AC 159 ms
32,516 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 50 ms
16,496 KB
testcase_11 AC 89 ms
27,504 KB
testcase_12 AC 75 ms
23,184 KB
testcase_13 AC 64 ms
17,308 KB
testcase_14 AC 94 ms
22,568 KB
testcase_15 AC 38 ms
12,416 KB
testcase_16 AC 138 ms
29,792 KB
testcase_17 AC 55 ms
15,584 KB
testcase_18 AC 60 ms
16,552 KB
testcase_19 AC 85 ms
20,812 KB
testcase_20 AC 137 ms
30,380 KB
testcase_21 AC 110 ms
25,668 KB
testcase_22 AC 63 ms
17,408 KB
testcase_23 AC 72 ms
18,692 KB
testcase_24 AC 47 ms
14,324 KB
testcase_25 AC 144 ms
31,492 KB
testcase_26 AC 112 ms
25,580 KB
testcase_27 AC 152 ms
31,960 KB
testcase_28 AC 130 ms
29,032 KB
testcase_29 AC 119 ms
27,144 KB
testcase_30 AC 48 ms
14,652 KB
testcase_31 AC 80 ms
20,148 KB
testcase_32 AC 145 ms
31,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
a=sorted(list(map(int,input().split())))
cnt=0
for i in range(n):
    if k>=a[i]:
        k-=a[i]
        cnt+=1
    else:
        break
print(cnt,k)
0