結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
135,176 KB
testcase_01 AC 91 ms
134,996 KB
testcase_02 AC 91 ms
135,484 KB
testcase_03 AC 115 ms
136,372 KB
testcase_04 AC 90 ms
135,404 KB
testcase_05 AC 92 ms
135,428 KB
testcase_06 AC 91 ms
135,448 KB
testcase_07 AC 115 ms
136,096 KB
testcase_08 AC 106 ms
149,300 KB
testcase_09 AC 132 ms
171,648 KB
testcase_10 AC 133 ms
140,940 KB
testcase_11 AC 126 ms
169,304 KB
testcase_12 AC 150 ms
172,740 KB
testcase_13 AC 142 ms
152,028 KB
testcase_14 AC 153 ms
172,732 KB
testcase_15 AC 158 ms
167,120 KB
testcase_16 AC 104 ms
146,316 KB
testcase_17 AC 150 ms
173,212 KB
testcase_18 AC 149 ms
173,116 KB
testcase_19 AC 151 ms
173,484 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