結果

問題 No.1325 Subsequence Score
ユーザー brthyyjpbrthyyjp
提出日時 2021-02-20 16:04:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 228 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 154,332 KB
最終ジャッジ日時 2024-09-17 20:20:24
合計ジャッジ時間 4,198 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,952 KB
testcase_01 AC 37 ms
53,408 KB
testcase_02 AC 41 ms
53,096 KB
testcase_03 AC 46 ms
59,912 KB
testcase_04 AC 38 ms
52,948 KB
testcase_05 AC 43 ms
60,040 KB
testcase_06 AC 38 ms
53,524 KB
testcase_07 AC 42 ms
59,196 KB
testcase_08 AC 38 ms
52,952 KB
testcase_09 AC 38 ms
52,496 KB
testcase_10 AC 38 ms
53,440 KB
testcase_11 AC 39 ms
53,192 KB
testcase_12 AC 38 ms
52,640 KB
testcase_13 AC 145 ms
153,576 KB
testcase_14 AC 72 ms
93,692 KB
testcase_15 AC 132 ms
135,504 KB
testcase_16 AC 138 ms
144,912 KB
testcase_17 AC 96 ms
102,448 KB
testcase_18 AC 67 ms
89,300 KB
testcase_19 AC 144 ms
153,748 KB
testcase_20 AC 55 ms
75,984 KB
testcase_21 AC 80 ms
101,716 KB
testcase_22 AC 100 ms
104,336 KB
testcase_23 AC 146 ms
154,056 KB
testcase_24 AC 147 ms
153,980 KB
testcase_25 AC 146 ms
153,932 KB
testcase_26 AC 144 ms
154,332 KB
testcase_27 AC 145 ms
153,924 KB
testcase_28 AC 37 ms
53,228 KB
testcase_29 AC 37 ms
52,820 KB
testcase_30 AC 37 ms
52,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

mod = 998244353

if n == 1:
    print(A[0]%mod)
    exit()

ans = 0
for i, a in enumerate(A):
    ans += (i+2)*a
    ans %= mod
ans *= pow(2, n-2, mod)
ans %= mod
print(ans)
0