結果

問題 No.2424 Josouzai
ユーザー loop0919loop0919
提出日時 2023-08-18 21:07:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 194 bytes
コンパイル時間 1,854 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 108,848 KB
最終ジャッジ日時 2024-11-28 04:50:30
合計ジャッジ時間 4,716 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,460 KB
testcase_01 AC 36 ms
51,748 KB
testcase_02 AC 35 ms
51,944 KB
testcase_03 AC 35 ms
51,708 KB
testcase_04 AC 61 ms
74,712 KB
testcase_05 AC 128 ms
101,884 KB
testcase_06 AC 120 ms
108,848 KB
testcase_07 AC 121 ms
108,792 KB
testcase_08 AC 128 ms
101,996 KB
testcase_09 AC 36 ms
52,804 KB
testcase_10 AC 51 ms
71,808 KB
testcase_11 AC 75 ms
99,820 KB
testcase_12 AC 68 ms
90,892 KB
testcase_13 AC 65 ms
73,800 KB
testcase_14 AC 81 ms
87,620 KB
testcase_15 AC 44 ms
62,728 KB
testcase_16 AC 109 ms
104,372 KB
testcase_17 AC 56 ms
69,904 KB
testcase_18 AC 59 ms
72,868 KB
testcase_19 AC 75 ms
83,696 KB
testcase_20 AC 109 ms
104,312 KB
testcase_21 AC 93 ms
94,740 KB
testcase_22 AC 63 ms
74,356 KB
testcase_23 AC 67 ms
77,292 KB
testcase_24 AC 51 ms
67,544 KB
testcase_25 AC 115 ms
108,576 KB
testcase_26 AC 92 ms
94,284 KB
testcase_27 AC 120 ms
108,724 KB
testcase_28 AC 105 ms
100,264 KB
testcase_29 AC 100 ms
98,044 KB
testcase_30 AC 52 ms
68,516 KB
testcase_31 AC 72 ms
80,964 KB
testcase_32 AC 119 ms
108,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())

a_list = sorted(list(map(int, input().split())))

cnt = 0
for a in a_list:
    if K >= a:
        cnt += 1
        K -= a
    else:
        break

print(cnt, K)
0