結果

問題 No.1325 Subsequence Score
ユーザー brthyyjpbrthyyjp
提出日時 2021-02-20 16:02:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 184 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 154,076 KB
最終ジャッジ日時 2024-09-17 20:17:56
合計ジャッジ時間 4,153 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,360 KB
testcase_01 AC 36 ms
52,184 KB
testcase_02 AC 35 ms
51,988 KB
testcase_03 AC 37 ms
59,648 KB
testcase_04 AC 33 ms
53,832 KB
testcase_05 AC 37 ms
59,300 KB
testcase_06 AC 32 ms
52,860 KB
testcase_07 AC 37 ms
59,844 KB
testcase_08 AC 33 ms
52,484 KB
testcase_09 AC 34 ms
52,344 KB
testcase_10 AC 35 ms
52,700 KB
testcase_11 AC 37 ms
52,124 KB
testcase_12 AC 37 ms
54,048 KB
testcase_13 AC 141 ms
153,752 KB
testcase_14 AC 63 ms
93,612 KB
testcase_15 AC 124 ms
135,632 KB
testcase_16 AC 128 ms
144,360 KB
testcase_17 AC 86 ms
102,352 KB
testcase_18 AC 63 ms
89,864 KB
testcase_19 AC 140 ms
153,992 KB
testcase_20 AC 53 ms
76,316 KB
testcase_21 AC 72 ms
101,644 KB
testcase_22 AC 91 ms
104,440 KB
testcase_23 AC 133 ms
153,552 KB
testcase_24 AC 139 ms
153,844 KB
testcase_25 AC 136 ms
154,076 KB
testcase_26 AC 138 ms
153,592 KB
testcase_27 AC 128 ms
153,920 KB
testcase_28 AC 33 ms
51,988 KB
testcase_29 AC 32 ms
52,000 KB
testcase_30 AC 32 ms
52,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

mod = 998244353
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