結果

問題 No.1299 Random Array Score
ユーザー neterukunneterukun
提出日時 2020-11-27 21:45:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 176 bytes
コンパイル時間 813 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 107,776 KB
最終ジャッジ日時 2024-07-26 12:08:03
合計ジャッジ時間 4,388 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,204 KB
testcase_01 AC 35 ms
52,756 KB
testcase_02 AC 36 ms
52,348 KB
testcase_03 AC 90 ms
101,864 KB
testcase_04 AC 82 ms
107,420 KB
testcase_05 AC 69 ms
96,404 KB
testcase_06 AC 66 ms
92,464 KB
testcase_07 AC 68 ms
93,672 KB
testcase_08 AC 83 ms
107,776 KB
testcase_09 AC 41 ms
59,216 KB
testcase_10 AC 56 ms
76,652 KB
testcase_11 AC 42 ms
63,224 KB
testcase_12 AC 65 ms
89,152 KB
testcase_13 AC 78 ms
106,024 KB
testcase_14 AC 64 ms
89,600 KB
testcase_15 AC 64 ms
92,388 KB
testcase_16 AC 65 ms
92,528 KB
testcase_17 AC 43 ms
64,292 KB
testcase_18 AC 55 ms
79,512 KB
testcase_19 AC 62 ms
81,952 KB
testcase_20 AC 50 ms
72,292 KB
testcase_21 AC 38 ms
59,140 KB
testcase_22 AC 46 ms
65,688 KB
testcase_23 AC 70 ms
93,292 KB
testcase_24 AC 75 ms
95,936 KB
testcase_25 AC 62 ms
89,684 KB
testcase_26 AC 36 ms
58,900 KB
testcase_27 AC 43 ms
67,768 KB
testcase_28 AC 41 ms
64,016 KB
testcase_29 AC 44 ms
69,980 KB
testcase_30 AC 65 ms
88,896 KB
testcase_31 AC 48 ms
69,356 KB
testcase_32 AC 79 ms
105,880 KB
testcase_33 AC 89 ms
102,528 KB
testcase_34 AC 67 ms
96,348 KB
testcase_35 AC 91 ms
102,612 KB
testcase_36 AC 71 ms
96,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
a = list(map(int, input().split()))
MOD = 998244353


ave = sum(a) * pow(n, MOD - 2, MOD) % MOD
ans = pow(2, k, MOD) * ave * n % MOD
print(ans)
0