結果

問題 No.2717 Sum of Subarray of Subsequence
ユーザー vwxyzvwxyz
提出日時 2024-07-17 06:14:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 903 ms / 2,000 ms
コード長 264 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 33,380 KB
最終ジャッジ日時 2024-07-17 06:14:30
合計ジャッジ時間 13,524 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 32 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 882 ms
32,600 KB
testcase_10 AC 903 ms
32,924 KB
testcase_11 AC 885 ms
32,456 KB
testcase_12 AC 852 ms
32,472 KB
testcase_13 AC 812 ms
33,380 KB
testcase_14 AC 837 ms
32,464 KB
testcase_15 AC 874 ms
32,992 KB
testcase_16 AC 874 ms
32,604 KB
testcase_17 AC 882 ms
32,860 KB
testcase_18 AC 881 ms
33,372 KB
testcase_19 AC 858 ms
32,860 KB
testcase_20 AC 30 ms
10,624 KB
testcase_21 AC 31 ms
10,752 KB
testcase_22 AC 860 ms
32,548 KB
testcase_23 AC 820 ms
20,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
mod=998244353
if N==1:
    ans=A[0]
else:
    cnt=[None]*N
    for i in range(N):
        cnt[i]=pow(2,N-2,mod)*(1+mod)//2*(min(i,N-1-i)+2)*(N+1-min(i,N-1-i))%mod
    ans=sum(a*c for a,c in zip(A,cnt))%mod
print(ans)
0