結果

問題 No.2111 Sum of Diff
ユーザー tktk_snsntktk_snsn
提出日時 2022-10-28 21:36:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 368 ms / 2,000 ms
コード長 288 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,632 KB
最終ジャッジ日時 2024-07-06 00:40:57
合計ジャッジ時間 5,446 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 367 ms
32,384 KB
testcase_03 AC 247 ms
25,676 KB
testcase_04 AC 73 ms
13,580 KB
testcase_05 AC 368 ms
32,376 KB
testcase_06 AC 366 ms
32,384 KB
testcase_07 AC 107 ms
15,732 KB
testcase_08 AC 136 ms
17,996 KB
testcase_09 AC 46 ms
12,032 KB
testcase_10 AC 57 ms
12,800 KB
testcase_11 AC 184 ms
21,040 KB
testcase_12 AC 182 ms
20,548 KB
testcase_13 AC 125 ms
17,004 KB
testcase_14 AC 293 ms
28,508 KB
testcase_15 AC 338 ms
31,948 KB
testcase_16 AC 162 ms
19,728 KB
testcase_17 AC 366 ms
32,632 KB
testcase_18 AC 131 ms
17,376 KB
testcase_19 AC 278 ms
27,232 KB
testcase_20 AC 357 ms
32,376 KB
testcase_21 AC 32 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


two = [1] * (N + 10)
for i in range(1, N + 10):
    two[i] = two[i-1] * 2 % mod

ans = 0
for i, a in enumerate(A):
    ans += a * (two[N - i - 1] - 1) % mod
    ans -= a * (two[i] - 1) % mod
    ans %= mod
print(ans)
0