結果

問題 No.2550 MORE! JUMP! MORE!
ユーザー KudeKude
提出日時 2023-11-25 13:23:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 211 ms / 2,000 ms
コード長 333 bytes
コンパイル時間 588 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 101,760 KB
最終ジャッジ日時 2024-09-26 10:25:53
合計ジャッジ時間 6,401 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 42 ms
51,584 KB
testcase_02 AC 42 ms
51,968 KB
testcase_03 AC 42 ms
51,712 KB
testcase_04 AC 42 ms
51,584 KB
testcase_05 AC 41 ms
51,584 KB
testcase_06 AC 41 ms
51,712 KB
testcase_07 AC 42 ms
51,712 KB
testcase_08 AC 42 ms
51,712 KB
testcase_09 AC 42 ms
51,456 KB
testcase_10 AC 42 ms
51,584 KB
testcase_11 AC 41 ms
51,968 KB
testcase_12 AC 40 ms
51,584 KB
testcase_13 AC 41 ms
51,840 KB
testcase_14 AC 41 ms
51,712 KB
testcase_15 AC 41 ms
51,584 KB
testcase_16 AC 41 ms
51,712 KB
testcase_17 AC 41 ms
51,328 KB
testcase_18 AC 42 ms
51,712 KB
testcase_19 AC 41 ms
51,840 KB
testcase_20 AC 155 ms
91,776 KB
testcase_21 AC 111 ms
83,968 KB
testcase_22 AC 68 ms
68,352 KB
testcase_23 AC 141 ms
89,600 KB
testcase_24 AC 205 ms
101,760 KB
testcase_25 AC 147 ms
91,392 KB
testcase_26 AC 124 ms
86,528 KB
testcase_27 AC 180 ms
96,640 KB
testcase_28 AC 163 ms
93,824 KB
testcase_29 AC 136 ms
88,064 KB
testcase_30 AC 210 ms
100,352 KB
testcase_31 AC 210 ms
100,480 KB
testcase_32 AC 210 ms
100,352 KB
testcase_33 AC 209 ms
100,864 KB
testcase_34 AC 211 ms
100,480 KB
testcase_35 AC 209 ms
100,352 KB
testcase_36 AC 209 ms
100,608 KB
testcase_37 AC 210 ms
100,608 KB
testcase_38 AC 210 ms
100,352 KB
testcase_39 AC 210 ms
100,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
n = int(input())
ans = 0
sm_i = 0
cnt = 1
for i, x in enumerate(map(int, input().split())):
    c = cnt
    s = sm_i + cnt
    if i == n - 1:
        ans = (ans + s * x) % mod
    else:
        ans = (ans + s * x * pow(2, n - 2 - i, mod)) % mod
        cnt = (c + cnt) % mod
        sm_i = (sm_i + s) % mod
print(ans)
0