結果

問題 No.2424 Josouzai
ユーザー liny_tailliny_tail
提出日時 2024-08-13 16:39:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 253 ms / 2,000 ms
コード長 211 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 32,500 KB
最終ジャッジ日時 2024-08-13 16:39:51
合計ジャッジ時間 5,572 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,624 KB
testcase_01 AC 26 ms
10,496 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 25 ms
10,496 KB
testcase_04 AC 65 ms
16,968 KB
testcase_05 AC 145 ms
32,500 KB
testcase_06 AC 178 ms
32,228 KB
testcase_07 AC 253 ms
32,228 KB
testcase_08 AC 169 ms
32,380 KB
testcase_09 AC 26 ms
10,496 KB
testcase_10 AC 56 ms
16,120 KB
testcase_11 AC 88 ms
27,380 KB
testcase_12 AC 68 ms
23,060 KB
testcase_13 AC 58 ms
17,184 KB
testcase_14 AC 84 ms
22,444 KB
testcase_15 AC 32 ms
12,160 KB
testcase_16 AC 133 ms
29,664 KB
testcase_17 AC 48 ms
15,460 KB
testcase_18 AC 52 ms
16,296 KB
testcase_19 AC 73 ms
20,560 KB
testcase_20 AC 128 ms
30,252 KB
testcase_21 AC 122 ms
25,416 KB
testcase_22 AC 65 ms
17,028 KB
testcase_23 AC 75 ms
18,568 KB
testcase_24 AC 43 ms
14,328 KB
testcase_25 AC 146 ms
31,236 KB
testcase_26 AC 99 ms
25,200 KB
testcase_27 AC 157 ms
31,832 KB
testcase_28 AC 137 ms
28,908 KB
testcase_29 AC 121 ms
27,020 KB
testcase_30 AC 43 ms
14,520 KB
testcase_31 AC 72 ms
20,152 KB
testcase_32 AC 147 ms
31,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split(' '))
A = list(map(int, input().split(' ')))
A = sorted(A)

cnt = 0
while True:
  if len(A) == 0:
    break
  if A[0] > K:
    break
  K -= A.pop(0)
  cnt += 1

print(f'{cnt} {K}')
0