結果

問題 No.2550 MORE! JUMP! MORE!
ユーザー sepa38sepa38
提出日時 2023-11-19 19:51:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 316 ms / 2,000 ms
コード長 191 bytes
コンパイル時間 443 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 107,264 KB
最終ジャッジ日時 2024-09-26 06:22:26
合計ジャッジ時間 9,438 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
51,584 KB
testcase_01 AC 47 ms
51,712 KB
testcase_02 AC 47 ms
51,712 KB
testcase_03 AC 47 ms
51,456 KB
testcase_04 AC 46 ms
51,456 KB
testcase_05 AC 47 ms
51,584 KB
testcase_06 AC 47 ms
51,456 KB
testcase_07 AC 46 ms
51,840 KB
testcase_08 AC 46 ms
51,456 KB
testcase_09 AC 48 ms
51,584 KB
testcase_10 AC 47 ms
52,096 KB
testcase_11 AC 47 ms
51,584 KB
testcase_12 AC 46 ms
51,584 KB
testcase_13 AC 47 ms
51,456 KB
testcase_14 AC 47 ms
51,840 KB
testcase_15 AC 47 ms
51,456 KB
testcase_16 AC 44 ms
51,712 KB
testcase_17 AC 41 ms
51,584 KB
testcase_18 AC 42 ms
51,456 KB
testcase_19 AC 41 ms
51,456 KB
testcase_20 AC 217 ms
94,720 KB
testcase_21 AC 144 ms
84,864 KB
testcase_22 AC 80 ms
72,320 KB
testcase_23 AC 191 ms
92,288 KB
testcase_24 AC 304 ms
107,264 KB
testcase_25 AC 217 ms
94,592 KB
testcase_26 AC 177 ms
88,320 KB
testcase_27 AC 274 ms
100,864 KB
testcase_28 AC 234 ms
97,280 KB
testcase_29 AC 179 ms
90,112 KB
testcase_30 AC 316 ms
101,888 KB
testcase_31 AC 312 ms
101,760 KB
testcase_32 AC 309 ms
101,888 KB
testcase_33 AC 312 ms
101,888 KB
testcase_34 AC 310 ms
101,888 KB
testcase_35 AC 315 ms
101,760 KB
testcase_36 AC 310 ms
101,632 KB
testcase_37 AC 311 ms
102,016 KB
testcase_38 AC 313 ms
101,632 KB
testcase_39 AC 312 ms
101,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
mod = 998244353
ans = 0
for i in range(n):
  ans += (i + 2) * pow(2, i-1, mod) * pow(2, max(0, n-i-2), mod) * a[i]
  ans %= mod
print(ans)
0