結果

問題 No.1299 Random Array Score
ユーザー roarisroaris
提出日時 2020-11-27 22:43:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 737 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 547 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 105,544 KB
最終ジャッジ日時 2024-07-26 19:04:05
合計ジャッジ時間 15,130 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,820 KB
testcase_01 AC 38 ms
52,568 KB
testcase_02 AC 37 ms
52,728 KB
testcase_03 AC 694 ms
100,156 KB
testcase_04 AC 704 ms
105,444 KB
testcase_05 AC 550 ms
99,648 KB
testcase_06 AC 488 ms
96,940 KB
testcase_07 AC 511 ms
96,800 KB
testcase_08 AC 671 ms
105,544 KB
testcase_09 AC 67 ms
67,172 KB
testcase_10 AC 298 ms
86,088 KB
testcase_11 AC 116 ms
73,940 KB
testcase_12 AC 515 ms
94,664 KB
testcase_13 AC 659 ms
105,480 KB
testcase_14 AC 476 ms
94,744 KB
testcase_15 AC 504 ms
96,768 KB
testcase_16 AC 522 ms
96,784 KB
testcase_17 AC 139 ms
77,944 KB
testcase_18 AC 301 ms
87,872 KB
testcase_19 AC 385 ms
89,604 KB
testcase_20 AC 229 ms
82,192 KB
testcase_21 AC 63 ms
68,008 KB
testcase_22 AC 157 ms
78,420 KB
testcase_23 AC 475 ms
96,960 KB
testcase_24 AC 546 ms
99,596 KB
testcase_25 AC 465 ms
94,620 KB
testcase_26 AC 60 ms
66,304 KB
testcase_27 AC 161 ms
79,024 KB
testcase_28 AC 134 ms
77,476 KB
testcase_29 AC 189 ms
80,700 KB
testcase_30 AC 440 ms
94,548 KB
testcase_31 AC 200 ms
80,460 KB
testcase_32 AC 637 ms
105,512 KB
testcase_33 AC 737 ms
100,084 KB
testcase_34 AC 677 ms
101,664 KB
testcase_35 AC 172 ms
100,248 KB
testcase_36 AC 151 ms
103,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, K = map(int, input().split())
A = list(map(int, input().split()))
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