結果

問題 No.2424 Josouzai
ユーザー pluto77pluto77
提出日時 2023-08-22 10:40:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 138 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 32,756 KB
最終ジャッジ日時 2024-05-09 16:21:26
合計ジャッジ時間 4,297 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 26 ms
10,496 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 WA -
testcase_04 AC 54 ms
17,092 KB
testcase_05 AC 129 ms
32,500 KB
testcase_06 AC 128 ms
32,348 KB
testcase_07 AC 127 ms
32,348 KB
testcase_08 AC 128 ms
32,756 KB
testcase_09 AC 25 ms
10,496 KB
testcase_10 AC 42 ms
16,368 KB
testcase_11 AC 82 ms
27,372 KB
testcase_12 AC 62 ms
23,060 KB
testcase_13 AC 54 ms
17,308 KB
testcase_14 AC 77 ms
22,564 KB
testcase_15 AC 31 ms
12,416 KB
testcase_16 AC 117 ms
29,664 KB
testcase_17 AC 47 ms
15,456 KB
testcase_18 AC 50 ms
16,424 KB
testcase_19 AC 69 ms
20,684 KB
testcase_20 AC 113 ms
30,376 KB
testcase_21 AC 93 ms
25,532 KB
testcase_22 AC 52 ms
17,152 KB
testcase_23 AC 60 ms
18,688 KB
testcase_24 AC 39 ms
14,068 KB
testcase_25 AC 121 ms
31,484 KB
testcase_26 AC 93 ms
25,328 KB
testcase_27 AC 127 ms
31,960 KB
testcase_28 AC 107 ms
29,028 KB
testcase_29 AC 97 ms
27,016 KB
testcase_30 AC 41 ms
14,388 KB
testcase_31 AC 67 ms
20,024 KB
testcase_32 AC 120 ms
31,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
a=list(map(int,input().split()))
a.sort()
s=0
for i in range(n):
 s+=a[i]
 if s>k:
  break
print(i,k-s+a[i])
0