結果

問題 No.1299 Random Array Score
ユーザー FromBooskaFromBooska
提出日時 2023-02-20 17:48:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 311 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 107,392 KB
最終ジャッジ日時 2024-07-21 09:31:45
合計ジャッジ時間 5,481 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,456 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 38 ms
51,200 KB
testcase_03 AC 95 ms
101,888 KB
testcase_04 AC 88 ms
107,392 KB
testcase_05 AC 77 ms
95,232 KB
testcase_06 AC 71 ms
91,136 KB
testcase_07 AC 72 ms
92,416 KB
testcase_08 AC 89 ms
107,340 KB
testcase_09 AC 42 ms
58,752 KB
testcase_10 AC 58 ms
76,672 KB
testcase_11 AC 45 ms
62,592 KB
testcase_12 AC 69 ms
88,576 KB
testcase_13 AC 86 ms
105,344 KB
testcase_14 AC 69 ms
88,448 KB
testcase_15 AC 72 ms
91,392 KB
testcase_16 AC 72 ms
91,136 KB
testcase_17 AC 48 ms
63,872 KB
testcase_18 AC 60 ms
78,848 KB
testcase_19 AC 63 ms
81,408 KB
testcase_20 AC 52 ms
70,656 KB
testcase_21 AC 41 ms
58,496 KB
testcase_22 AC 47 ms
65,024 KB
testcase_23 AC 71 ms
91,264 KB
testcase_24 AC 77 ms
96,128 KB
testcase_25 AC 70 ms
88,960 KB
testcase_26 AC 42 ms
58,112 KB
testcase_27 AC 49 ms
66,176 KB
testcase_28 AC 46 ms
63,104 KB
testcase_29 AC 48 ms
67,712 KB
testcase_30 AC 69 ms
88,320 KB
testcase_31 AC 51 ms
68,480 KB
testcase_32 AC 85 ms
105,600 KB
testcase_33 AC 97 ms
102,784 KB
testcase_34 AC 74 ms
95,360 KB
testcase_35 AC 97 ms
102,412 KB
testcase_36 AC 75 ms
95,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 1回に加算される数の期待値は(sumA/N)*N
# そこで数列Aは変わった、よって次の期待値は変わる
# 2倍になる、4倍になる、、、

N, K = map(int, input().split())
A = list(map(int, input().split()))
mod = 998244353
sumA = sum(A)
ans = (sumA * pow(2, K, mod))%mod
print(ans)
0