結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,876 KB
testcase_01 AC 36 ms
51,904 KB
testcase_02 AC 35 ms
53,008 KB
testcase_03 AC 694 ms
99,948 KB
testcase_04 AC 715 ms
105,436 KB
testcase_05 AC 557 ms
99,696 KB
testcase_06 AC 496 ms
97,032 KB
testcase_07 AC 517 ms
96,868 KB
testcase_08 AC 668 ms
105,480 KB
testcase_09 AC 66 ms
67,672 KB
testcase_10 AC 300 ms
86,196 KB
testcase_11 AC 118 ms
74,060 KB
testcase_12 AC 520 ms
94,584 KB
testcase_13 AC 657 ms
105,420 KB
testcase_14 AC 483 ms
95,008 KB
testcase_15 AC 520 ms
96,764 KB
testcase_16 AC 529 ms
96,720 KB
testcase_17 AC 140 ms
77,696 KB
testcase_18 AC 308 ms
87,732 KB
testcase_19 AC 390 ms
89,624 KB
testcase_20 AC 231 ms
82,152 KB
testcase_21 AC 63 ms
67,808 KB
testcase_22 AC 158 ms
78,392 KB
testcase_23 AC 478 ms
97,224 KB
testcase_24 AC 551 ms
99,336 KB
testcase_25 AC 466 ms
94,700 KB
testcase_26 AC 59 ms
66,820 KB
testcase_27 AC 161 ms
79,064 KB
testcase_28 AC 135 ms
77,480 KB
testcase_29 AC 189 ms
80,520 KB
testcase_30 AC 440 ms
94,916 KB
testcase_31 AC 201 ms
80,408 KB
testcase_32 AC 638 ms
105,252 KB
testcase_33 AC 743 ms
100,260 KB
testcase_34 AC 685 ms
101,364 KB
testcase_35 WA -
testcase_36 AC 72 ms
96,024 KB
権限があれば一括ダウンロードができます

ソースコード

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))
    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