結果

問題 No.2111 Sum of Diff
ユーザー titiatitia
提出日時 2022-10-28 22:35:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 887 ms / 2,000 ms
コード長 169 bytes
コンパイル時間 410 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,624 KB
最終ジャッジ日時 2024-07-06 01:47:32
合計ジャッジ時間 10,771 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 887 ms
32,376 KB
testcase_03 AC 590 ms
25,668 KB
testcase_04 AC 120 ms
13,696 KB
testcase_05 AC 886 ms
32,500 KB
testcase_06 AC 868 ms
32,624 KB
testcase_07 AC 208 ms
15,728 KB
testcase_08 AC 284 ms
17,860 KB
testcase_09 AC 69 ms
12,032 KB
testcase_10 AC 89 ms
12,416 KB
testcase_11 AC 404 ms
21,072 KB
testcase_12 AC 386 ms
20,672 KB
testcase_13 AC 260 ms
17,124 KB
testcase_14 AC 716 ms
28,372 KB
testcase_15 AC 846 ms
31,804 KB
testcase_16 AC 354 ms
19,716 KB
testcase_17 AC 880 ms
32,504 KB
testcase_18 AC 261 ms
17,092 KB
testcase_19 AC 647 ms
27,484 KB
testcase_20 AC 871 ms
32,540 KB
testcase_21 AC 33 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ANS=0

for i in range(N):
    x=pow(2,N-i-1,mod)-pow(2,i,mod)
    ANS+=x*A[i]
    ANS%=mod

print(ANS%mod)
0