結果

問題 No.2424 Josouzai
ユーザー titiatitia
提出日時 2023-08-20 04:15:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 187 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,636 KB
最終ジャッジ日時 2024-05-07 11:48:13
合計ジャッジ時間 5,428 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 62 ms
17,224 KB
testcase_05 AC 149 ms
32,636 KB
testcase_06 AC 150 ms
32,352 KB
testcase_07 AC 148 ms
32,364 KB
testcase_08 AC 150 ms
32,504 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 48 ms
16,376 KB
testcase_11 AC 87 ms
27,504 KB
testcase_12 AC 72 ms
23,060 KB
testcase_13 AC 62 ms
17,184 KB
testcase_14 AC 91 ms
22,440 KB
testcase_15 AC 37 ms
12,288 KB
testcase_16 AC 132 ms
29,792 KB
testcase_17 AC 55 ms
15,584 KB
testcase_18 AC 59 ms
16,552 KB
testcase_19 AC 83 ms
20,688 KB
testcase_20 AC 135 ms
30,252 KB
testcase_21 AC 106 ms
25,668 KB
testcase_22 AC 62 ms
17,284 KB
testcase_23 AC 70 ms
18,568 KB
testcase_24 AC 47 ms
14,072 KB
testcase_25 AC 140 ms
31,492 KB
testcase_26 AC 112 ms
25,392 KB
testcase_27 AC 148 ms
31,964 KB
testcase_28 AC 128 ms
28,948 KB
testcase_29 AC 116 ms
27,152 KB
testcase_30 AC 48 ms
14,516 KB
testcase_31 AC 78 ms
20,148 KB
testcase_32 AC 141 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