結果

問題 No.2111 Sum of Diff
ユーザー 👑 KazunKazun
提出日時 2022-10-28 21:52:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 341 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 108,824 KB
最終ジャッジ日時 2024-07-06 00:57:45
合計ジャッジ時間 2,987 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
51,840 KB
testcase_01 AC 32 ms
51,840 KB
testcase_02 AC 95 ms
101,860 KB
testcase_03 AC 73 ms
94,080 KB
testcase_04 AC 44 ms
65,792 KB
testcase_05 AC 96 ms
102,016 KB
testcase_06 AC 96 ms
101,888 KB
testcase_07 AC 51 ms
71,040 KB
testcase_08 AC 55 ms
76,288 KB
testcase_09 AC 42 ms
62,288 KB
testcase_10 AC 42 ms
63,616 KB
testcase_11 AC 62 ms
83,456 KB
testcase_12 AC 61 ms
83,072 KB
testcase_13 AC 53 ms
74,624 KB
testcase_14 AC 77 ms
99,712 KB
testcase_15 AC 90 ms
108,824 KB
testcase_16 AC 60 ms
80,384 KB
testcase_17 AC 98 ms
101,760 KB
testcase_18 AC 54 ms
74,624 KB
testcase_19 AC 76 ms
98,432 KB
testcase_20 AC 98 ms
101,696 KB
testcase_21 AC 39 ms
59,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N=int(input())
    A=list(map(int,input().split()))

    Mod=998244353
    two=[1]*(N+1)
    for i in range(1,N+1):
        two[i]=(2*two[i-1])%Mod

    ans=0
    for i in range(N):
        ans+=(two[N-1-i]-two[i])*A[i]
        ans%=Mod
    return ans%Mod

#==================================================
print(solve())
0