結果

問題 No.2111 Sum of Diff
ユーザー prussian_coderprussian_coder
提出日時 2022-10-28 21:43:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 199 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 96,384 KB
最終ジャッジ日時 2024-07-06 00:48:54
合計ジャッジ時間 2,714 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,584 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 84 ms
96,032 KB
testcase_03 AC 74 ms
83,968 KB
testcase_04 AC 48 ms
64,128 KB
testcase_05 AC 85 ms
96,128 KB
testcase_06 AC 84 ms
95,872 KB
testcase_07 AC 55 ms
67,840 KB
testcase_08 AC 55 ms
71,424 KB
testcase_09 AC 45 ms
61,568 KB
testcase_10 AC 47 ms
62,592 KB
testcase_11 AC 61 ms
76,800 KB
testcase_12 AC 59 ms
76,160 KB
testcase_13 AC 56 ms
70,016 KB
testcase_14 AC 73 ms
88,064 KB
testcase_15 AC 80 ms
94,336 KB
testcase_16 AC 59 ms
74,368 KB
testcase_17 AC 86 ms
96,384 KB
testcase_18 AC 55 ms
70,400 KB
testcase_19 AC 73 ms
86,656 KB
testcase_20 AC 83 ms
96,140 KB
testcase_21 AC 44 ms
59,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=[int(x) for x in input().split()]
mod=998244353
L=1
R=pow(2,N-1,mod)
v=pow(2,mod-2,mod)
ans=0
for i in range(N):
	ans+=A[i]*(R-L)%mod
	ans%=mod
	L*=2
	L%=mod
	R*=v
	R%=mod
print(ans)
0