結果

問題 No.2111 Sum of Diff
ユーザー vwxyzvwxyz
提出日時 2024-08-15 10:49:33
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 992 ms / 2,000 ms
コード長 160 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,624 KB
最終ジャッジ日時 2024-08-15 10:49:47
合計ジャッジ時間 12,922 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 984 ms
32,504 KB
testcase_03 AC 646 ms
25,664 KB
testcase_04 AC 131 ms
13,536 KB
testcase_05 AC 984 ms
32,500 KB
testcase_06 AC 992 ms
32,624 KB
testcase_07 AC 220 ms
15,728 KB
testcase_08 AC 323 ms
17,988 KB
testcase_09 AC 72 ms
12,032 KB
testcase_10 AC 94 ms
12,416 KB
testcase_11 AC 438 ms
21,164 KB
testcase_12 AC 453 ms
20,676 KB
testcase_13 AC 283 ms
16,996 KB
testcase_14 AC 758 ms
28,504 KB
testcase_15 AC 933 ms
31,672 KB
testcase_16 AC 382 ms
19,848 KB
testcase_17 AC 951 ms
32,624 KB
testcase_18 AC 284 ms
17,104 KB
testcase_19 AC 726 ms
27,496 KB
testcase_20 AC 931 ms
32,496 KB
testcase_21 AC 36 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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