結果

問題 No.1325 Subsequence Score
ユーザー tamatotamato
提出日時 2020-12-22 00:22:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 432 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 158,248 KB
最終ジャッジ日時 2024-09-21 13:29:31
合計ジャッジ時間 4,134 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,980 KB
testcase_01 AC 37 ms
52,940 KB
testcase_02 AC 36 ms
52,964 KB
testcase_03 AC 43 ms
61,264 KB
testcase_04 AC 37 ms
53,168 KB
testcase_05 AC 43 ms
60,948 KB
testcase_06 AC 35 ms
53,112 KB
testcase_07 AC 42 ms
61,976 KB
testcase_08 AC 37 ms
52,660 KB
testcase_09 AC 36 ms
53,316 KB
testcase_10 AC 35 ms
52,996 KB
testcase_11 AC 36 ms
53,348 KB
testcase_12 AC 36 ms
53,560 KB
testcase_13 AC 156 ms
157,788 KB
testcase_14 AC 75 ms
94,580 KB
testcase_15 AC 138 ms
139,084 KB
testcase_16 AC 147 ms
148,432 KB
testcase_17 AC 96 ms
100,476 KB
testcase_18 AC 70 ms
91,712 KB
testcase_19 AC 152 ms
158,248 KB
testcase_20 AC 58 ms
76,444 KB
testcase_21 AC 85 ms
102,304 KB
testcase_22 AC 104 ms
103,076 KB
testcase_23 AC 150 ms
157,596 KB
testcase_24 AC 154 ms
157,660 KB
testcase_25 AC 147 ms
157,656 KB
testcase_26 AC 148 ms
157,800 KB
testcase_27 AC 152 ms
157,684 KB
testcase_28 AC 34 ms
52,864 KB
testcase_29 AC 35 ms
52,880 KB
testcase_30 AC 35 ms
53,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

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

    pow2 = [1] * (N+1)
    for i in range(1, N+1):
        pow2[i] = (pow2[i-1] * 2)%mod

    ans = 0
    for i, a in enumerate(A):
        ans = (ans + ((a * ((pow2[i-1] * i)%mod + pow2[i])%mod)%mod * pow2[N-i-1])%mod)%mod
    print(ans)



if __name__ == '__main__':
    main()
0