結果

問題 No.2424 Josouzai
ユーザー KudeKude
提出日時 2023-08-18 21:01:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 150 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 107,624 KB
最終ジャッジ日時 2024-11-28 04:36:56
合計ジャッジ時間 4,348 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,352 KB
testcase_01 AC 40 ms
52,492 KB
testcase_02 AC 45 ms
52,324 KB
testcase_03 AC 39 ms
52,180 KB
testcase_04 AC 68 ms
73,992 KB
testcase_05 AC 135 ms
101,972 KB
testcase_06 AC 127 ms
107,000 KB
testcase_07 AC 127 ms
107,456 KB
testcase_08 AC 132 ms
102,116 KB
testcase_09 AC 39 ms
53,072 KB
testcase_10 AC 54 ms
72,780 KB
testcase_11 AC 80 ms
99,472 KB
testcase_12 AC 71 ms
90,084 KB
testcase_13 AC 66 ms
73,340 KB
testcase_14 AC 86 ms
86,448 KB
testcase_15 AC 48 ms
62,920 KB
testcase_16 AC 113 ms
102,780 KB
testcase_17 AC 60 ms
69,796 KB
testcase_18 AC 64 ms
72,668 KB
testcase_19 AC 78 ms
83,548 KB
testcase_20 AC 113 ms
103,556 KB
testcase_21 AC 97 ms
93,796 KB
testcase_22 AC 63 ms
73,780 KB
testcase_23 AC 71 ms
77,804 KB
testcase_24 AC 53 ms
66,968 KB
testcase_25 AC 121 ms
107,424 KB
testcase_26 AC 96 ms
93,728 KB
testcase_27 AC 124 ms
107,624 KB
testcase_28 AC 107 ms
99,116 KB
testcase_29 AC 101 ms
97,760 KB
testcase_30 AC 55 ms
66,948 KB
testcase_31 AC 77 ms
79,992 KB
testcase_32 AC 123 ms
107,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
ans = 0
for a in sorted(map(int, input().split())):
    if a > k:
        break
    k -= a
    ans += 1
print(ans, k)
0