結果

問題 No.2550 MORE! JUMP! MORE!
ユーザー titiatitia
提出日時 2023-11-30 02:59:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 495 ms / 2,000 ms
コード長 646 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 34,944 KB
最終ジャッジ日時 2024-09-26 13:47:35
合計ジャッジ時間 13,253 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
26,496 KB
testcase_01 AC 151 ms
26,624 KB
testcase_02 AC 154 ms
26,624 KB
testcase_03 AC 153 ms
26,496 KB
testcase_04 AC 152 ms
26,496 KB
testcase_05 AC 151 ms
26,624 KB
testcase_06 AC 150 ms
26,624 KB
testcase_07 AC 150 ms
26,496 KB
testcase_08 AC 157 ms
26,496 KB
testcase_09 AC 151 ms
26,624 KB
testcase_10 AC 151 ms
26,624 KB
testcase_11 AC 155 ms
26,624 KB
testcase_12 AC 152 ms
26,496 KB
testcase_13 AC 153 ms
26,496 KB
testcase_14 AC 153 ms
26,624 KB
testcase_15 AC 155 ms
26,496 KB
testcase_16 AC 159 ms
26,496 KB
testcase_17 AC 158 ms
26,496 KB
testcase_18 AC 156 ms
26,496 KB
testcase_19 AC 148 ms
26,496 KB
testcase_20 AC 358 ms
33,892 KB
testcase_21 AC 274 ms
29,712 KB
testcase_22 AC 185 ms
27,916 KB
testcase_23 AC 332 ms
32,696 KB
testcase_24 AC 480 ms
33,916 KB
testcase_25 AC 363 ms
33,112 KB
testcase_26 AC 294 ms
31,968 KB
testcase_27 AC 427 ms
34,844 KB
testcase_28 AC 394 ms
34,152 KB
testcase_29 AC 316 ms
32,680 KB
testcase_30 AC 482 ms
34,944 KB
testcase_31 AC 485 ms
34,780 KB
testcase_32 AC 488 ms
34,912 KB
testcase_33 AC 470 ms
34,900 KB
testcase_34 AC 493 ms
34,792 KB
testcase_35 AC 487 ms
34,812 KB
testcase_36 AC 479 ms
34,796 KB
testcase_37 AC 495 ms
34,808 KB
testcase_38 AC 491 ms
34,844 KB
testcase_39 AC 488 ms
34,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

mod=998244353

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

FACT_INV=[pow(FACT[-1],mod-2,mod)]
for i in range(2*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

score=0

k=N-1

for i in range(k+1):
    score=(score+(i+1)*Combi(k,i))%mod

X=pow(2,k-1,mod)
INV=pow(2,mod-2,mod)

ANS=score*A[-1]%mod

#print(ANS)
now=2
for i in range(N-1):
    ANS=(ANS+now*X*A[i]*INV)%mod
    #print(now*X*INV%mod)
    now+=1


print(ANS%mod)
    
0