結果

問題 No.2550 MORE! JUMP! MORE!
ユーザー hato336hato336
提出日時 2023-11-25 13:38:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 649 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 121,984 KB
最終ジャッジ日時 2024-09-26 10:29:55
合計ジャッジ時間 11,735 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
85,888 KB
testcase_01 AC 130 ms
85,888 KB
testcase_02 AC 132 ms
85,760 KB
testcase_03 WA -
testcase_04 AC 132 ms
86,016 KB
testcase_05 AC 130 ms
85,760 KB
testcase_06 AC 134 ms
85,632 KB
testcase_07 AC 135 ms
85,760 KB
testcase_08 AC 133 ms
85,632 KB
testcase_09 AC 133 ms
85,760 KB
testcase_10 AC 133 ms
85,632 KB
testcase_11 AC 135 ms
85,760 KB
testcase_12 AC 131 ms
85,888 KB
testcase_13 AC 131 ms
85,632 KB
testcase_14 AC 132 ms
86,016 KB
testcase_15 AC 133 ms
85,888 KB
testcase_16 AC 130 ms
86,016 KB
testcase_17 AC 135 ms
85,632 KB
testcase_18 AC 132 ms
85,632 KB
testcase_19 AC 133 ms
85,632 KB
testcase_20 AC 290 ms
108,928 KB
testcase_21 AC 232 ms
99,072 KB
testcase_22 AC 172 ms
90,624 KB
testcase_23 AC 273 ms
106,112 KB
testcase_24 AC 368 ms
121,728 KB
testcase_25 AC 277 ms
108,416 KB
testcase_26 AC 245 ms
102,272 KB
testcase_27 AC 333 ms
114,560 KB
testcase_28 AC 304 ms
111,488 KB
testcase_29 AC 255 ms
104,064 KB
testcase_30 AC 409 ms
121,856 KB
testcase_31 AC 405 ms
121,600 KB
testcase_32 AC 404 ms
121,728 KB
testcase_33 AC 379 ms
121,600 KB
testcase_34 AC 374 ms
121,984 KB
testcase_35 AC 380 ms
121,856 KB
testcase_36 AC 374 ms
121,984 KB
testcase_37 AC 378 ms
121,984 KB
testcase_38 AC 371 ms
121,728 KB
testcase_39 AC 376 ms
121,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)
n = int(input())
#
#alist = []
#s = input()

#for i in range(n):
#    alist.append(list(map(int,input().split())))

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