結果

問題 No.2717 Sum of Subarray of Subsequence
ユーザー hiryuNhiryuN
提出日時 2024-04-05 22:26:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 563 ms / 2,000 ms
コード長 283 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 104,652 KB
最終ジャッジ日時 2024-10-01 02:39:48
合計ジャッジ時間 9,061 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,684 KB
testcase_01 AC 38 ms
53,416 KB
testcase_02 AC 37 ms
52,520 KB
testcase_03 AC 37 ms
53,012 KB
testcase_04 AC 37 ms
53,596 KB
testcase_05 AC 37 ms
53,192 KB
testcase_06 AC 36 ms
52,060 KB
testcase_07 AC 36 ms
53,068 KB
testcase_08 AC 37 ms
53,212 KB
testcase_09 AC 555 ms
102,132 KB
testcase_10 AC 561 ms
102,008 KB
testcase_11 AC 557 ms
102,152 KB
testcase_12 AC 562 ms
102,064 KB
testcase_13 AC 561 ms
102,080 KB
testcase_14 AC 563 ms
102,148 KB
testcase_15 AC 560 ms
102,148 KB
testcase_16 AC 563 ms
101,824 KB
testcase_17 AC 562 ms
101,964 KB
testcase_18 AC 558 ms
102,152 KB
testcase_19 AC 558 ms
101,996 KB
testcase_20 AC 37 ms
53,364 KB
testcase_21 AC 39 ms
52,952 KB
testcase_22 AC 560 ms
101,996 KB
testcase_23 AC 543 ms
104,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
M=998244353
A=list(map(int,input().split()))
ans=0
for i in range(n):
    j=n-i-1
    a=pow(2,i,M)
    a*=i
    a*=pow(2,-1,M)
    a+=pow(2,i,M)
    b=pow(2,j,M)
    b*=j
    b*=pow(2,-1,M)
    b+=pow(2,j,M)
    c=(a*b)%M
    #print(c)
    ans+=(A[i]*c)%M
print(ans%M)
0