結果

問題 No.2754 Cumulate and Drop
ユーザー titiatitia
提出日時 2024-05-13 01:11:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 168 ms / 2,000 ms
コード長 534 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 173,452 KB
最終ジャッジ日時 2024-12-20 09:19:56
合計ジャッジ時間 3,923 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
135,684 KB
testcase_01 AC 101 ms
135,036 KB
testcase_02 AC 103 ms
135,264 KB
testcase_03 AC 103 ms
136,296 KB
testcase_04 AC 103 ms
136,480 KB
testcase_05 AC 103 ms
136,608 KB
testcase_06 AC 101 ms
135,492 KB
testcase_07 AC 103 ms
135,232 KB
testcase_08 AC 120 ms
150,396 KB
testcase_09 AC 145 ms
171,700 KB
testcase_10 AC 150 ms
141,144 KB
testcase_11 AC 140 ms
169,192 KB
testcase_12 AC 165 ms
173,144 KB
testcase_13 AC 151 ms
151,768 KB
testcase_14 AC 165 ms
172,872 KB
testcase_15 AC 141 ms
167,428 KB
testcase_16 AC 115 ms
146,796 KB
testcase_17 AC 167 ms
173,176 KB
testcase_18 AC 168 ms
173,452 KB
testcase_19 AC 168 ms
173,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

mod=998244353

FACT=[1]
for i in range(1,5*10**5+1):
    FACT.append(FACT[-1]*i%mod)

FACT_INV=[pow(FACT[-1],mod-2,mod)]
for i in range(5*10**5,0,-1):
    FACT_INV.append(FACT_INV[-1]*i%mod)

FACT_INV.reverse()

def Combi(a,b):
    if 0<=b<=a:
        return FACT[a]*FACT_INV[b]%mod*FACT_INV[a-b]%mod
    else:
        return 0

def cat(i,j):
    return (Combi(i+j+1,j)-2*Combi(i+j,j-1))%mod

A.reverse()
ANS=0
for i in range(N):
    ANS+=A[i]*cat(N-1,i)
    ANS%=mod

print(ANS)
    
0