結果

問題 No.2550 MORE! JUMP! MORE!
ユーザー NullzNullz
提出日時 2023-11-25 13:48:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 323 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 107,392 KB
最終ジャッジ日時 2024-09-26 10:32:56
合計ジャッジ時間 5,690 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 39 ms
51,584 KB
testcase_03 WA -
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 39 ms
52,224 KB
testcase_06 AC 40 ms
51,712 KB
testcase_07 AC 40 ms
51,968 KB
testcase_08 AC 39 ms
52,224 KB
testcase_09 AC 39 ms
51,584 KB
testcase_10 AC 40 ms
51,456 KB
testcase_11 AC 39 ms
51,968 KB
testcase_12 AC 39 ms
51,456 KB
testcase_13 AC 38 ms
51,968 KB
testcase_14 AC 39 ms
51,712 KB
testcase_15 AC 39 ms
52,352 KB
testcase_16 AC 39 ms
51,328 KB
testcase_17 AC 39 ms
52,224 KB
testcase_18 AC 39 ms
51,712 KB
testcase_19 AC 39 ms
51,328 KB
testcase_20 AC 141 ms
91,136 KB
testcase_21 AC 93 ms
77,568 KB
testcase_22 AC 61 ms
65,792 KB
testcase_23 AC 123 ms
87,424 KB
testcase_24 AC 183 ms
107,392 KB
testcase_25 AC 132 ms
90,496 KB
testcase_26 AC 110 ms
81,920 KB
testcase_27 AC 170 ms
99,328 KB
testcase_28 AC 133 ms
93,952 KB
testcase_29 AC 110 ms
84,480 KB
testcase_30 AC 196 ms
102,016 KB
testcase_31 AC 195 ms
102,144 KB
testcase_32 AC 194 ms
102,016 KB
testcase_33 AC 194 ms
101,888 KB
testcase_34 AC 194 ms
102,100 KB
testcase_35 AC 195 ms
101,632 KB
testcase_36 AC 196 ms
101,632 KB
testcase_37 AC 196 ms
101,912 KB
testcase_38 AC 197 ms
102,140 KB
testcase_39 AC 197 ms
101,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
n = int(input())
a = [*map(int, input().split())]
ans = 0
for i, v in enumerate(a):
    if i == 0:
        res = pow(2, n - 2, mod)
    elif i < n - 1:
        res = ((i + 2) * pow(2, n - 3, mod)) % mod
    else:
        res = ((n + 1) * pow(2, n - 2, mod)) % mod
    ans = (ans + res * v) % mod
print(ans)
0