結果

問題 No.2111 Sum of Diff
ユーザー SI1000-githubSI1000-github
提出日時 2022-10-29 14:50:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 443 ms / 2,000 ms
コード長 734 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 107,444 KB
最終ジャッジ日時 2024-07-06 13:32:41
合計ジャッジ時間 6,196 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,296 KB
testcase_01 AC 33 ms
52,832 KB
testcase_02 AC 419 ms
102,168 KB
testcase_03 AC 290 ms
97,588 KB
testcase_04 AC 87 ms
77,704 KB
testcase_05 AC 413 ms
101,836 KB
testcase_06 AC 426 ms
102,084 KB
testcase_07 AC 125 ms
81,476 KB
testcase_08 AC 161 ms
85,444 KB
testcase_09 AC 60 ms
70,192 KB
testcase_10 AC 71 ms
73,104 KB
testcase_11 AC 215 ms
90,008 KB
testcase_12 AC 209 ms
90,216 KB
testcase_13 AC 147 ms
84,160 KB
testcase_14 AC 338 ms
101,204 KB
testcase_15 AC 396 ms
107,444 KB
testcase_16 AC 192 ms
88,796 KB
testcase_17 AC 443 ms
102,044 KB
testcase_18 AC 159 ms
83,996 KB
testcase_19 AC 332 ms
100,324 KB
testcase_20 AC 424 ms
102,056 KB
testcase_21 AC 46 ms
62,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python
# -*- coding: utf-8 -*-

# import
from sys import stdin, setrecursionlimit
setrecursionlimit(10**8)

def int_map():
    return map(int,input().split())

def int_list():
    return list(map(int,input().split()))

def int_mtx(N):
    x = [list(map(int, stdin.readline().split())) for _ in range(N)]
    return x

def str_mtx(N):
    x = [list(stdin.readline()[:-1]) for _ in range(N)]
    return x

def print_space(l):
    return print(" ".join([str(x) for x in l]))



"""    main code    """

N = int(input())
a = int_list()

MOD = 998244353

ans = 0
for i in range(N):
    ans += a[i]*pow(2,i,MOD)*(pow(2,N-(i+1),MOD)-1)
    ans %= MOD
    ans -= a[i]*(pow(2,i,MOD)-1)*pow(2,N-(i+1),MOD)
    ans %= MOD

print(ans)
0