結果

問題 No.1299 Random Array Score
ユーザー shotoyooshotoyoo
提出日時 2020-11-27 22:10:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 316 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 107,776 KB
最終ジャッジ日時 2024-07-26 13:02:22
合計ジャッジ時間 4,366 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 103 ms
101,888 KB
testcase_04 AC 96 ms
107,280 KB
testcase_05 AC 84 ms
96,384 KB
testcase_06 AC 78 ms
91,648 KB
testcase_07 AC 81 ms
92,416 KB
testcase_08 AC 98 ms
107,776 KB
testcase_09 AC 45 ms
59,648 KB
testcase_10 AC 65 ms
77,184 KB
testcase_11 AC 50 ms
62,592 KB
testcase_12 AC 75 ms
89,216 KB
testcase_13 AC 95 ms
105,840 KB
testcase_14 AC 77 ms
89,472 KB
testcase_15 AC 77 ms
92,160 KB
testcase_16 AC 78 ms
91,776 KB
testcase_17 AC 50 ms
64,128 KB
testcase_18 AC 66 ms
79,232 KB
testcase_19 AC 69 ms
82,048 KB
testcase_20 AC 58 ms
71,296 KB
testcase_21 AC 46 ms
58,752 KB
testcase_22 AC 50 ms
65,664 KB
testcase_23 AC 78 ms
91,136 KB
testcase_24 AC 83 ms
96,256 KB
testcase_25 AC 78 ms
89,472 KB
testcase_26 AC 46 ms
58,496 KB
testcase_27 AC 53 ms
66,304 KB
testcase_28 AC 48 ms
64,128 KB
testcase_29 AC 55 ms
68,608 KB
testcase_30 AC 77 ms
88,448 KB
testcase_31 AC 57 ms
68,352 KB
testcase_32 AC 92 ms
106,112 KB
testcase_33 AC 104 ms
101,928 KB
testcase_34 AC 80 ms
96,256 KB
testcase_35 AC 103 ms
101,968 KB
testcase_36 AC 80 ms
95,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()
sys.setrecursionlimit(max(1000, 10**9))
write = lambda x: sys.stdout.write(x+"\n")

n,k = list(map(int, input().split()))
a = list(map(int, input().split()))
ans = 0
M = 998244353
def inv(x):
    return pow(x, M-2, M)
ans = sum(a) * pow(2, k, M)
print(ans%M)
0