結果

問題 No.2424 Josouzai
ユーザー titiatitia
提出日時 2023-08-20 04:15:49
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 187 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,632 KB
最終ジャッジ日時 2024-11-30 04:20:37
合計ジャッジ時間 5,894 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 31 ms
10,496 KB
testcase_04 AC 67 ms
17,180 KB
testcase_05 AC 165 ms
32,504 KB
testcase_06 AC 166 ms
32,228 KB
testcase_07 AC 166 ms
32,224 KB
testcase_08 AC 169 ms
32,632 KB
testcase_09 AC 31 ms
10,496 KB
testcase_10 AC 52 ms
16,376 KB
testcase_11 AC 97 ms
27,512 KB
testcase_12 AC 78 ms
23,192 KB
testcase_13 AC 69 ms
17,364 KB
testcase_14 AC 99 ms
22,552 KB
testcase_15 AC 42 ms
12,288 KB
testcase_16 AC 146 ms
29,796 KB
testcase_17 AC 59 ms
15,580 KB
testcase_18 AC 64 ms
16,556 KB
testcase_19 AC 91 ms
20,820 KB
testcase_20 AC 147 ms
30,384 KB
testcase_21 AC 117 ms
25,544 KB
testcase_22 AC 65 ms
17,284 KB
testcase_23 AC 76 ms
18,564 KB
testcase_24 AC 50 ms
14,072 KB
testcase_25 AC 156 ms
31,368 KB
testcase_26 AC 119 ms
25,460 KB
testcase_27 AC 161 ms
31,964 KB
testcase_28 AC 139 ms
29,032 KB
testcase_29 AC 126 ms
27,148 KB
testcase_30 AC 51 ms
14,516 KB
testcase_31 AC 84 ms
20,024 KB
testcase_32 AC 158 ms
31,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
A=list(map(int,input().split()))
A.sort()

for i in range(N):
    if A[i]<=K:
        K-=A[i]
    else:
        print(i,K)
        break
else:
    print(N,K)
0