結果

問題 No.1299 Random Array Score
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-11-27 22:34:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 161 bytes
コンパイル時間 569 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 107,712 KB
最終ジャッジ日時 2024-07-26 18:51:45
合計ジャッジ時間 4,350 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,484 KB
testcase_01 AC 38 ms
52,864 KB
testcase_02 AC 37 ms
52,388 KB
testcase_03 AC 94 ms
102,116 KB
testcase_04 AC 85 ms
107,600 KB
testcase_05 AC 75 ms
97,284 KB
testcase_06 AC 70 ms
92,472 KB
testcase_07 AC 71 ms
92,408 KB
testcase_08 AC 88 ms
107,712 KB
testcase_09 AC 42 ms
59,940 KB
testcase_10 AC 57 ms
78,388 KB
testcase_11 AC 44 ms
63,508 KB
testcase_12 AC 70 ms
89,036 KB
testcase_13 AC 86 ms
105,860 KB
testcase_14 AC 70 ms
90,576 KB
testcase_15 AC 73 ms
92,912 KB
testcase_16 AC 71 ms
92,300 KB
testcase_17 AC 46 ms
66,008 KB
testcase_18 AC 60 ms
79,436 KB
testcase_19 AC 62 ms
82,020 KB
testcase_20 AC 52 ms
71,592 KB
testcase_21 AC 42 ms
59,944 KB
testcase_22 AC 48 ms
65,428 KB
testcase_23 AC 71 ms
92,536 KB
testcase_24 AC 75 ms
96,860 KB
testcase_25 AC 70 ms
90,620 KB
testcase_26 AC 42 ms
58,896 KB
testcase_27 AC 49 ms
67,372 KB
testcase_28 AC 46 ms
63,644 KB
testcase_29 AC 49 ms
69,292 KB
testcase_30 AC 68 ms
89,168 KB
testcase_31 AC 51 ms
69,720 KB
testcase_32 AC 84 ms
105,956 KB
testcase_33 AC 97 ms
102,620 KB
testcase_34 AC 75 ms
96,496 KB
testcase_35 AC 98 ms
102,944 KB
testcase_36 AC 76 ms
96,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
n, k = map(int, input().split())
a = list(map(int, input().split()))
print(sum(a) * pow(n * 2, k, mod) * pow(pow(n, k, mod), mod - 2, mod) % mod)
0