結果

問題 No.1325 Subsequence Score
ユーザー 👑 KazunKazun
提出日時 2020-12-22 00:26:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 253 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 81,716 KB
実行使用メモリ 161,400 KB
最終ジャッジ日時 2023-10-21 12:12:47
合計ジャッジ時間 4,263 ms
ジャッジサーバーID
(参考情報)
judge10 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,504 KB
testcase_01 AC 39 ms
53,504 KB
testcase_02 AC 39 ms
53,504 KB
testcase_03 AC 44 ms
59,976 KB
testcase_04 AC 40 ms
53,504 KB
testcase_05 AC 44 ms
59,976 KB
testcase_06 AC 40 ms
53,504 KB
testcase_07 AC 44 ms
59,976 KB
testcase_08 AC 38 ms
53,504 KB
testcase_09 AC 40 ms
53,504 KB
testcase_10 AC 39 ms
53,504 KB
testcase_11 AC 40 ms
53,504 KB
testcase_12 AC 40 ms
53,504 KB
testcase_13 AC 154 ms
160,956 KB
testcase_14 AC 75 ms
95,236 KB
testcase_15 AC 138 ms
141,836 KB
testcase_16 AC 145 ms
151,864 KB
testcase_17 AC 100 ms
102,048 KB
testcase_18 AC 71 ms
90,216 KB
testcase_19 AC 152 ms
161,316 KB
testcase_20 AC 57 ms
76,076 KB
testcase_21 AC 83 ms
102,364 KB
testcase_22 AC 103 ms
104,228 KB
testcase_23 AC 154 ms
161,396 KB
testcase_24 AC 156 ms
161,396 KB
testcase_25 AC 153 ms
161,400 KB
testcase_26 AC 153 ms
161,400 KB
testcase_27 AC 152 ms
161,400 KB
testcase_28 AC 38 ms
53,504 KB
testcase_29 AC 39 ms
53,504 KB
testcase_30 AC 39 ms
53,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline

N=int(input())
A=[0]+list(map(int,input().split()))
Mod=998244353

if N==1:
    print(A[1]%Mod)
    exit(0)

X=0
for i,a in enumerate(A[1:],1):
    X+=(i+1)*a
    X%=Mod

alpha=pow(2,N-2,Mod)
X=(X*alpha)%Mod
print(X)
0