結果

問題 No.1299 Random Array Score
ユーザー toyuzukotoyuzuko
提出日時 2020-12-06 11:06:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 199 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 105,184 KB
最終ジャッジ日時 2024-09-17 10:19:44
合計ジャッジ時間 4,333 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,360 KB
testcase_01 AC 35 ms
52,424 KB
testcase_02 AC 33 ms
53,280 KB
testcase_03 AC 70 ms
103,240 KB
testcase_04 AC 74 ms
102,852 KB
testcase_05 AC 62 ms
94,460 KB
testcase_06 AC 60 ms
88,968 KB
testcase_07 AC 61 ms
89,776 KB
testcase_08 AC 72 ms
102,500 KB
testcase_09 AC 35 ms
59,548 KB
testcase_10 AC 49 ms
76,360 KB
testcase_11 AC 38 ms
62,564 KB
testcase_12 AC 57 ms
87,464 KB
testcase_13 AC 70 ms
103,204 KB
testcase_14 AC 59 ms
87,700 KB
testcase_15 AC 60 ms
89,608 KB
testcase_16 AC 60 ms
88,944 KB
testcase_17 AC 40 ms
64,676 KB
testcase_18 AC 51 ms
77,660 KB
testcase_19 AC 54 ms
80,588 KB
testcase_20 AC 44 ms
71,344 KB
testcase_21 AC 35 ms
59,864 KB
testcase_22 AC 41 ms
65,212 KB
testcase_23 AC 62 ms
89,848 KB
testcase_24 AC 65 ms
93,768 KB
testcase_25 AC 60 ms
86,584 KB
testcase_26 AC 37 ms
59,012 KB
testcase_27 AC 43 ms
67,240 KB
testcase_28 AC 41 ms
64,260 KB
testcase_29 AC 43 ms
67,584 KB
testcase_30 AC 59 ms
86,576 KB
testcase_31 AC 48 ms
67,572 KB
testcase_32 AC 78 ms
103,228 KB
testcase_33 AC 75 ms
105,184 KB
testcase_34 AC 68 ms
96,024 KB
testcase_35 AC 79 ms
104,264 KB
testcase_36 AC 66 ms
95,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import io, os
input = io.BytesIO(os.read(0, os.fstat(0).st_size)).readline

MOD = 998244353

N, K = map(int, input().split())
A = list(map(int, input().split()))

print(sum(A) * pow(2, K, MOD) % MOD)
0