結果

問題 No.2111 Sum of Diff
ユーザー ああいいああいい
提出日時 2022-10-31 10:51:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 320 ms / 2,000 ms
コード長 282 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 107,008 KB
最終ジャッジ日時 2024-07-08 01:02:10
合計ジャッジ時間 5,820 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,584 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 320 ms
101,888 KB
testcase_03 AC 222 ms
94,080 KB
testcase_04 AC 72 ms
66,688 KB
testcase_05 AC 311 ms
101,760 KB
testcase_06 AC 313 ms
101,760 KB
testcase_07 AC 102 ms
71,936 KB
testcase_08 AC 127 ms
76,544 KB
testcase_09 AC 56 ms
63,104 KB
testcase_10 AC 61 ms
64,512 KB
testcase_11 AC 163 ms
83,840 KB
testcase_12 AC 160 ms
83,712 KB
testcase_13 AC 117 ms
74,752 KB
testcase_14 AC 259 ms
99,328 KB
testcase_15 AC 296 ms
107,008 KB
testcase_16 AC 146 ms
80,768 KB
testcase_17 AC 314 ms
101,760 KB
testcase_18 AC 119 ms
75,008 KB
testcase_19 AC 243 ms
98,176 KB
testcase_20 AC 320 ms
101,760 KB
testcase_21 AC 46 ms
60,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
a = list(map(int,input().split()))

P = 998244353
ans = 0
sub = a[0]
for i in range(1,N):
    tmp = a[i] * (pow(2,i,P)-1) % P
    ans += pow(2,N - i - 1,P) * (tmp - sub) % P
    sub += a[i] * pow(2,i,P)
    sub %= P
    ans %= P
    #print(ans,sub)
print((-ans)%P)
0