結果

問題 No.1325 Subsequence Score
ユーザー first_vilfirst_vil
提出日時 2020-12-22 09:16:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 528 ms / 2,000 ms
コード長 329 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 66,336 KB
最終ジャッジ日時 2024-09-21 13:58:45
合計ジャッジ時間 7,958 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 27 ms
10,496 KB
testcase_10 AC 26 ms
10,624 KB
testcase_11 AC 27 ms
10,624 KB
testcase_12 AC 26 ms
10,752 KB
testcase_13 AC 528 ms
65,200 KB
testcase_14 AC 166 ms
25,716 KB
testcase_15 AC 441 ms
56,416 KB
testcase_16 AC 497 ms
66,256 KB
testcase_17 AC 233 ms
33,188 KB
testcase_18 AC 144 ms
24,360 KB
testcase_19 AC 527 ms
66,068 KB
testcase_20 AC 87 ms
17,764 KB
testcase_21 AC 190 ms
29,076 KB
testcase_22 AC 225 ms
34,240 KB
testcase_23 AC 516 ms
66,336 KB
testcase_24 AC 522 ms
65,268 KB
testcase_25 AC 518 ms
65,332 KB
testcase_26 AC 521 ms
65,268 KB
testcase_27 AC 518 ms
65,396 KB
testcase_28 AC 28 ms
10,624 KB
testcase_29 AC 28 ms
10,624 KB
testcase_30 AC 26 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    input=sys.stdin.readline
    mod=998244353
    n=int(input())
    a=list(map(int,input().split()))
    
    pow2=[1]*n
    for i in range(1,n):
        pow2[i]=pow2[i-1]*2%mod
    
    ans=0
    for i in range(n):
        ans=(ans+a[i]*((pow2[i]+pow2[i-1]*i)*pow2[n-i-1]))%mod
    print(ans)
main()
0