結果

問題 No.2111 Sum of Diff
ユーザー lilictakalilictaka
提出日時 2022-11-04 13:50:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 1,027 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 136,784 KB
最終ジャッジ日時 2024-07-18 13:25:04
合計ジャッジ時間 3,482 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,820 KB
testcase_01 AC 39 ms
53,692 KB
testcase_02 AC 151 ms
136,580 KB
testcase_03 AC 118 ms
122,624 KB
testcase_04 AC 61 ms
76,576 KB
testcase_05 AC 153 ms
136,452 KB
testcase_06 AC 153 ms
136,784 KB
testcase_07 AC 75 ms
86,748 KB
testcase_08 AC 83 ms
95,784 KB
testcase_09 AC 56 ms
70,676 KB
testcase_10 AC 59 ms
72,136 KB
testcase_11 AC 99 ms
108,256 KB
testcase_12 AC 98 ms
107,632 KB
testcase_13 AC 81 ms
92,460 KB
testcase_14 AC 127 ms
126,796 KB
testcase_15 AC 145 ms
115,224 KB
testcase_16 AC 92 ms
102,740 KB
testcase_17 AC 154 ms
136,684 KB
testcase_18 AC 81 ms
93,424 KB
testcase_19 AC 124 ms
127,244 KB
testcase_20 AC 153 ms
136,576 KB
testcase_21 AC 53 ms
65,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
mod = 998244353
n = len(set(A))
ans = 0
cumJ = 0
base = 1
powmat = [0] * (2 * N)
powmat[0] = 1
for i in range(1,2*N):
    powmat[i] = powmat[i-1] * 2
    powmat[i] %=mod


for i in range(N):
    ans -=(cumJ * powmat[N-1-i])%mod * A[i]
    ans %=mod
    '''
    ans += segJ.sum(0,zipped[i]) * pow(2,N-1-i) * A[i]
    ans %=mod
    '''
    cumJ += base
    cumJ %=mod
    base *=2
    base %=mod
rev2 = pow(2,mod-2,mod)
cumI = [0] * N
cumI[0] = 1
for i in range(1,N):
    cumI[i] = cumI[i-1] * rev2
    cumI[i] %=mod
def acum(List):#累積和
    rev = [0 for _ in range(len(List))]
    for i in range(len(List)):
        if i == 0:
            rev[i] = List[i]
        else:
           rev[i] = rev[i-1] + List[i] 
        rev[i] %=mod
    return rev
cumI = acum(cumI)
for i in reversed(range(N)):
    '''

    ans -= segI.sum(zipped[i]+1,n) * pow(2,N-1+i) * A[i]
    ans %=mod
    '''
    ans += ((cumI[N-1]-cumI[i]) * powmat[N-1+i]) % mod * A[i]
    ans %=mod
print(ans)



0