結果

問題 No.1325 Subsequence Score
ユーザー chineristACchineristAC
提出日時 2020-12-22 13:03:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 730 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 175,360 KB
最終ジャッジ日時 2024-09-21 14:08:43
合計ジャッジ時間 5,900 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
70,272 KB
testcase_01 AC 71 ms
70,272 KB
testcase_02 AC 68 ms
70,656 KB
testcase_03 AC 73 ms
73,004 KB
testcase_04 AC 70 ms
71,296 KB
testcase_05 AC 81 ms
73,600 KB
testcase_06 AC 74 ms
70,912 KB
testcase_07 AC 78 ms
73,088 KB
testcase_08 AC 69 ms
70,016 KB
testcase_09 AC 71 ms
70,656 KB
testcase_10 AC 69 ms
70,528 KB
testcase_11 AC 72 ms
70,784 KB
testcase_12 AC 70 ms
70,988 KB
testcase_13 AC 235 ms
174,720 KB
testcase_14 AC 122 ms
109,492 KB
testcase_15 AC 224 ms
164,312 KB
testcase_16 AC 236 ms
175,360 KB
testcase_17 AC 151 ms
113,412 KB
testcase_18 AC 116 ms
106,624 KB
testcase_19 AC 233 ms
174,368 KB
testcase_20 AC 102 ms
96,948 KB
testcase_21 AC 135 ms
115,840 KB
testcase_22 AC 156 ms
116,552 KB
testcase_23 AC 235 ms
174,588 KB
testcase_24 AC 239 ms
174,780 KB
testcase_25 AC 241 ms
174,848 KB
testcase_26 AC 238 ms
174,472 KB
testcase_27 AC 239 ms
174,436 KB
testcase_28 AC 69 ms
70,016 KB
testcase_29 AC 71 ms
69,888 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def cmb(n, r, mod):#コンビネーションの高速計算 
    if ( r<0 or r>n ):
        return 0
    r = min(r, n-r)
    return g1[n] * g2[r] * g2[n-r] % mod

mod = 998244353 #出力の制限
N = 5*10**5
g1 = [1]*(N+1) # 元テーブル
g2 = [1]*(N+1) #逆元テーブル
inverse = [1]*(N+1) #逆元テーブル計算用テーブル

for i in range( 2, N + 1 ):
    g1[i]=( ( g1[i-1] * i ) % mod )
    inverse[i]=( ( -inverse[mod % i] * (mod//i) ) % mod )
    g2[i]=( (g2[i-1] * inverse[i]) % mod )
inverse[0]=0

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

if N==1:
    exit(print(A[0]))

a = pow(2,N-2,mod)
b = pow(2,N-1,mod)
res = 0
for i in range(N):
    res += A[i] * i * a + A[i] * b
    res %= mod

print(res)
0