結果

問題 No.2424 Josouzai
ユーザー rlangevinrlangevin
提出日時 2023-09-18 14:33:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 221 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 110,080 KB
最終ジャッジ日時 2024-07-05 05:21:50
合計ジャッジ時間 4,856 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
51,840 KB
testcase_01 AC 33 ms
51,840 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 34 ms
52,352 KB
testcase_04 AC 55 ms
74,880 KB
testcase_05 AC 111 ms
102,052 KB
testcase_06 AC 105 ms
108,944 KB
testcase_07 AC 108 ms
108,980 KB
testcase_08 AC 113 ms
101,720 KB
testcase_09 AC 32 ms
51,964 KB
testcase_10 AC 44 ms
72,064 KB
testcase_11 AC 65 ms
99,584 KB
testcase_12 AC 59 ms
90,140 KB
testcase_13 AC 54 ms
73,984 KB
testcase_14 AC 71 ms
86,528 KB
testcase_15 AC 38 ms
61,952 KB
testcase_16 AC 94 ms
104,448 KB
testcase_17 AC 48 ms
69,868 KB
testcase_18 AC 50 ms
71,936 KB
testcase_19 AC 66 ms
83,072 KB
testcase_20 AC 94 ms
104,704 KB
testcase_21 AC 80 ms
93,908 KB
testcase_22 AC 55 ms
73,600 KB
testcase_23 AC 58 ms
77,696 KB
testcase_24 AC 44 ms
65,920 KB
testcase_25 AC 103 ms
110,080 KB
testcase_26 AC 81 ms
94,600 KB
testcase_27 AC 106 ms
109,084 KB
testcase_28 AC 93 ms
99,876 KB
testcase_29 AC 86 ms
98,224 KB
testcase_30 AC 45 ms
66,964 KB
testcase_31 AC 62 ms
80,512 KB
testcase_32 AC 103 ms
108,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = sorted(list(map(int, input().split())), reverse=True)
ans = 0
while A:
    if K >= A[-1]:
        a = A.pop()
        ans += 1
        K -= a
    else:
        break
    
print(ans, K)
0