結果

問題 No.2424 Josouzai
ユーザー colognecologne
提出日時 2023-08-20 16:19:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 262 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 107,156 KB
最終ジャッジ日時 2024-11-30 19:29:07
合計ジャッジ時間 5,499 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 39 ms
51,584 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 65 ms
73,344 KB
testcase_05 AC 132 ms
101,816 KB
testcase_06 AC 124 ms
107,008 KB
testcase_07 AC 128 ms
106,880 KB
testcase_08 AC 134 ms
102,092 KB
testcase_09 AC 40 ms
52,480 KB
testcase_10 AC 54 ms
71,808 KB
testcase_11 AC 78 ms
98,176 KB
testcase_12 AC 69 ms
88,960 KB
testcase_13 AC 72 ms
72,832 KB
testcase_14 AC 83 ms
85,472 KB
testcase_15 AC 47 ms
61,824 KB
testcase_16 AC 115 ms
102,660 KB
testcase_17 AC 58 ms
68,864 KB
testcase_18 AC 62 ms
71,808 KB
testcase_19 AC 79 ms
82,176 KB
testcase_20 AC 113 ms
103,128 KB
testcase_21 AC 94 ms
92,928 KB
testcase_22 AC 64 ms
73,216 KB
testcase_23 AC 70 ms
76,672 KB
testcase_24 AC 54 ms
66,176 KB
testcase_25 AC 119 ms
107,024 KB
testcase_26 AC 96 ms
93,184 KB
testcase_27 AC 124 ms
107,136 KB
testcase_28 AC 107 ms
98,944 KB
testcase_29 AC 101 ms
96,580 KB
testcase_30 AC 55 ms
66,048 KB
testcase_31 AC 74 ms
80,128 KB
testcase_32 AC 123 ms
107,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N, K = map(int, input().split())
    A = sorted(map(int, input().split()))
    c = 0
    for a in A:
        if K >= a:
            K -= a
            c += 1
        else:
            break
    print(c, K)


if __name__ == '__main__':
    main()
0