結果

問題 No.1299 Random Array Score
ユーザー KudeKude
提出日時 2020-11-27 22:55:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 566 ms / 2,000 ms
コード長 209 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 107,672 KB
最終ジャッジ日時 2024-07-26 19:12:59
合計ジャッジ時間 13,140 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,728 KB
testcase_01 AC 35 ms
52,464 KB
testcase_02 AC 36 ms
52,204 KB
testcase_03 AC 555 ms
102,116 KB
testcase_04 AC 551 ms
107,672 KB
testcase_05 AC 428 ms
101,000 KB
testcase_06 AC 384 ms
98,324 KB
testcase_07 AC 416 ms
98,596 KB
testcase_08 AC 537 ms
107,628 KB
testcase_09 AC 62 ms
66,144 KB
testcase_10 AC 250 ms
86,884 KB
testcase_11 AC 96 ms
74,548 KB
testcase_12 AC 394 ms
96,104 KB
testcase_13 AC 530 ms
107,456 KB
testcase_14 AC 384 ms
96,132 KB
testcase_15 AC 405 ms
98,376 KB
testcase_16 AC 412 ms
98,616 KB
testcase_17 AC 117 ms
78,088 KB
testcase_18 AC 257 ms
88,436 KB
testcase_19 AC 316 ms
90,604 KB
testcase_20 AC 188 ms
82,888 KB
testcase_21 AC 59 ms
66,952 KB
testcase_22 AC 129 ms
78,756 KB
testcase_23 AC 381 ms
98,564 KB
testcase_24 AC 452 ms
101,100 KB
testcase_25 AC 381 ms
96,024 KB
testcase_26 AC 55 ms
66,436 KB
testcase_27 AC 137 ms
79,656 KB
testcase_28 AC 110 ms
75,816 KB
testcase_29 AC 166 ms
81,000 KB
testcase_30 AC 369 ms
95,128 KB
testcase_31 AC 166 ms
80,976 KB
testcase_32 AC 526 ms
107,236 KB
testcase_33 AC 566 ms
102,468 KB
testcase_34 AC 507 ms
101,480 KB
testcase_35 AC 277 ms
102,404 KB
testcase_36 AC 246 ms
99,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
n, k = map(int, input().split())
a = list(map(int, input().split()))
ans = 0
for ai in a:
    ans += ai
    ans += (ai * n * (pow(2, k, mod) - 1)) * pow(n, mod-2, mod)
    ans %= mod
print(ans)
0