結果

問題 No.1299 Random Array Score
ユーザー roarisroaris
提出日時 2020-11-27 22:45:53
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 322 bytes
コンパイル時間 427 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 105,752 KB
最終ジャッジ日時 2024-07-26 19:05:49
合計ジャッジ時間 15,181 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,820 KB
testcase_01 RE -
testcase_02 AC 37 ms
52,276 KB
testcase_03 AC 691 ms
100,124 KB
testcase_04 AC 714 ms
105,364 KB
testcase_05 AC 559 ms
99,388 KB
testcase_06 AC 498 ms
96,836 KB
testcase_07 AC 513 ms
97,172 KB
testcase_08 AC 671 ms
105,536 KB
testcase_09 AC 70 ms
67,092 KB
testcase_10 AC 299 ms
86,520 KB
testcase_11 AC 117 ms
73,996 KB
testcase_12 AC 521 ms
94,892 KB
testcase_13 AC 656 ms
105,752 KB
testcase_14 AC 483 ms
95,096 KB
testcase_15 AC 515 ms
96,932 KB
testcase_16 AC 530 ms
96,896 KB
testcase_17 AC 137 ms
78,092 KB
testcase_18 AC 305 ms
87,656 KB
testcase_19 AC 386 ms
89,540 KB
testcase_20 AC 229 ms
82,636 KB
testcase_21 AC 62 ms
68,264 KB
testcase_22 AC 157 ms
78,500 KB
testcase_23 AC 475 ms
97,212 KB
testcase_24 AC 551 ms
99,804 KB
testcase_25 AC 465 ms
94,732 KB
testcase_26 AC 58 ms
66,424 KB
testcase_27 AC 159 ms
79,128 KB
testcase_28 AC 134 ms
77,320 KB
testcase_29 AC 188 ms
80,868 KB
testcase_30 AC 438 ms
94,596 KB
testcase_31 AC 200 ms
80,472 KB
testcase_32 AC 634 ms
105,736 KB
testcase_33 AC 744 ms
100,068 KB
testcase_34 AC 684 ms
101,504 KB
testcase_35 RE -
testcase_36 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

if K==0:
    print(sum(A)%MOD)
    exit()
    
MOD = 998244353
S = sum(A)*pow(N, K, MOD)

for Ai in A:
    S = (S+N*(pow(2, K, MOD)-1)*Ai*pow(N, K-1, MOD))%MOD

S = (S*pow(pow(N, K, MOD), MOD-2, MOD))%MOD
print(S)
0