結果

問題 No.2111 Sum of Diff
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-10-28 22:29:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 268 ms / 2,000 ms
コード長 201 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 107,652 KB
最終ジャッジ日時 2024-07-06 01:41:42
合計ジャッジ時間 4,551 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,876 KB
testcase_01 AC 41 ms
52,836 KB
testcase_02 AC 268 ms
101,844 KB
testcase_03 AC 183 ms
94,480 KB
testcase_04 AC 65 ms
67,944 KB
testcase_05 AC 265 ms
101,908 KB
testcase_06 AC 262 ms
102,236 KB
testcase_07 AC 88 ms
72,584 KB
testcase_08 AC 108 ms
76,888 KB
testcase_09 AC 52 ms
63,284 KB
testcase_10 AC 57 ms
64,892 KB
testcase_11 AC 139 ms
84,212 KB
testcase_12 AC 134 ms
84,216 KB
testcase_13 AC 101 ms
75,060 KB
testcase_14 AC 213 ms
98,928 KB
testcase_15 AC 248 ms
107,652 KB
testcase_16 AC 125 ms
81,260 KB
testcase_17 AC 263 ms
101,856 KB
testcase_18 AC 102 ms
75,076 KB
testcase_19 AC 200 ms
98,664 KB
testcase_20 AC 265 ms
101,912 KB
testcase_21 AC 45 ms
61,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int,input().split()))
mod = 998244353

ans = 0
for i,a in enumerate(A):
    ans += a * pow(2,n-1-i,mod) % mod 
    ans -= a * pow(2,i,mod) % mod
    ans %= mod

print(ans)
0