結果

問題 No.1325 Subsequence Score
ユーザー first_vilfirst_vil
提出日時 2020-12-22 09:16:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 262 ms / 2,000 ms
コード長 329 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 177,048 KB
最終ジャッジ日時 2024-09-21 13:58:50
合計ジャッジ時間 5,089 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 45 ms
60,416 KB
testcase_04 AC 37 ms
52,524 KB
testcase_05 AC 45 ms
60,544 KB
testcase_06 AC 38 ms
52,480 KB
testcase_07 AC 44 ms
60,288 KB
testcase_08 AC 36 ms
52,352 KB
testcase_09 AC 36 ms
51,968 KB
testcase_10 AC 37 ms
52,608 KB
testcase_11 AC 39 ms
52,992 KB
testcase_12 AC 38 ms
52,480 KB
testcase_13 AC 254 ms
175,772 KB
testcase_14 AC 101 ms
97,120 KB
testcase_15 AC 214 ms
151,468 KB
testcase_16 AC 236 ms
165,008 KB
testcase_17 AC 139 ms
100,912 KB
testcase_18 AC 98 ms
94,336 KB
testcase_19 AC 250 ms
176,616 KB
testcase_20 AC 75 ms
84,904 KB
testcase_21 AC 116 ms
103,424 KB
testcase_22 AC 138 ms
102,476 KB
testcase_23 AC 255 ms
176,472 KB
testcase_24 AC 256 ms
176,712 KB
testcase_25 AC 254 ms
177,048 KB
testcase_26 AC 262 ms
176,480 KB
testcase_27 AC 253 ms
176,988 KB
testcase_28 AC 36 ms
51,584 KB
testcase_29 AC 37 ms
51,712 KB
testcase_30 AC 36 ms
51,840 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