結果

問題 No.1299 Random Array Score
ユーザー uni_pythonuni_python
提出日時 2020-12-11 22:47:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 732 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 81,936 KB
実行使用メモリ 105,452 KB
最終ジャッジ日時 2024-09-19 21:34:55
合計ジャッジ時間 3,683 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,084 KB
testcase_01 AC 36 ms
52,944 KB
testcase_02 AC 33 ms
52,552 KB
testcase_03 AC 91 ms
100,092 KB
testcase_04 AC 82 ms
105,376 KB
testcase_05 AC 66 ms
96,432 KB
testcase_06 AC 65 ms
92,084 KB
testcase_07 AC 65 ms
91,480 KB
testcase_08 AC 79 ms
105,452 KB
testcase_09 AC 37 ms
59,656 KB
testcase_10 AC 51 ms
76,512 KB
testcase_11 AC 41 ms
63,776 KB
testcase_12 AC 62 ms
89,532 KB
testcase_13 AC 77 ms
103,896 KB
testcase_14 AC 62 ms
88,992 KB
testcase_15 AC 65 ms
91,116 KB
testcase_16 AC 67 ms
90,796 KB
testcase_17 AC 43 ms
64,112 KB
testcase_18 AC 55 ms
78,740 KB
testcase_19 AC 56 ms
81,388 KB
testcase_20 AC 46 ms
70,568 KB
testcase_21 AC 37 ms
59,304 KB
testcase_22 AC 42 ms
65,580 KB
testcase_23 AC 63 ms
91,736 KB
testcase_24 AC 69 ms
95,044 KB
testcase_25 AC 62 ms
87,940 KB
testcase_26 AC 37 ms
59,552 KB
testcase_27 AC 44 ms
66,412 KB
testcase_28 AC 42 ms
64,104 KB
testcase_29 AC 46 ms
68,292 KB
testcase_30 AC 61 ms
87,564 KB
testcase_31 AC 44 ms
68,604 KB
testcase_32 AC 75 ms
104,164 KB
testcase_33 AC 85 ms
100,012 KB
testcase_34 AC 66 ms
96,488 KB
testcase_35 AC 88 ms
99,944 KB
testcase_36 AC 64 ms
96,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))

"""
i回目に選ばれたものは,そのあとK回まで追加で加算され続ける

aが選ばれたとして,
数列+a
数列+3a
数列+7a

後i回でaが選ばれたとすると,全ての要素に+a*2^(i-1)かな,
毎回aが選ばれたとして
1+2+4+...+2^(K-1) = 2^K - 1なので,
K2=(2^K-1)として
a*K2だけ全ての要素に足される

a=ave(A)として
合計の増分がave(A)*K2 * N = sum(A)*K2

わー,sample合わないと思ってたらmodし忘れ...
"""
mod=998244353


N,K=MI()
A=LI()


P=pow(2,K,mod)

S=(sum(A)%mod * P)

print(S%mod)
0