結果

問題 No.2111 Sum of Diff
ユーザー shirokumashirokuma
提出日時 2022-10-30 03:02:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 240 ms / 2,000 ms
コード長 270 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 107,208 KB
最終ジャッジ日時 2024-07-06 22:29:54
合計ジャッジ時間 4,355 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,252 KB
testcase_01 AC 32 ms
52,956 KB
testcase_02 AC 239 ms
102,056 KB
testcase_03 AC 162 ms
94,100 KB
testcase_04 AC 61 ms
67,216 KB
testcase_05 AC 240 ms
102,044 KB
testcase_06 AC 233 ms
102,144 KB
testcase_07 AC 81 ms
72,468 KB
testcase_08 AC 98 ms
76,480 KB
testcase_09 AC 49 ms
62,752 KB
testcase_10 AC 52 ms
65,532 KB
testcase_11 AC 123 ms
83,128 KB
testcase_12 AC 121 ms
82,916 KB
testcase_13 AC 86 ms
74,380 KB
testcase_14 AC 190 ms
99,436 KB
testcase_15 AC 231 ms
107,208 KB
testcase_16 AC 111 ms
81,072 KB
testcase_17 AC 237 ms
101,912 KB
testcase_18 AC 94 ms
75,612 KB
testcase_19 AC 179 ms
98,332 KB
testcase_20 AC 240 ms
102,064 KB
testcase_21 AC 41 ms
60,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki2110
mod = 998244353
N = int(input())
A = list(map(int, input().split()))
ans = A[0] * (pow(2,N-1,mod) - 1) - A[-1] * (pow(2,N-1,mod) - 1)
if N >= 3:
    for i in range(1,N-1):
        ans += A[i]*(pow(2,N-i-1,mod) - pow(2,i,mod))
        ans %= mod

print(ans%mod)
0