結果
問題 | No.2111 Sum of Diff |
ユーザー | lilictaka |
提出日時 | 2022-11-04 13:42:24 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 894 bytes |
コンパイル時間 | 150 ms |
コンパイル使用メモリ | 81,712 KB |
実行使用メモリ | 136,752 KB |
最終ジャッジ日時 | 2024-07-18 13:20:50 |
合計ジャッジ時間 | 3,975 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
57,600 KB |
testcase_01 | AC | 42 ms
52,480 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
N = int(input()) A = list(map(int,input().split())) mod = 998244353 n = len(set(A)) ans = 0 cumJ = 0 cumI = 0 ope = lambda x,y:(x+y) % mod for i in range(N): ans -=(cumJ * pow(2,N-1-i))%mod * A[i] ans %=mod ''' ans += segJ.sum(0,zipped[i]) * pow(2,N-1-i) * A[i] ans %=mod ''' cumJ += pow(2,i,mod) cumJ %=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] 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]) * pow(2,N-1+i) % mod * A[i] ans %=mod print(ans)