結果

問題 No.2111 Sum of Diff
ユーザー syunsukesyunsuke
提出日時 2022-11-27 00:18:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 242 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 108,924 KB
最終ジャッジ日時 2024-10-03 06:48:21
合計ジャッジ時間 2,751 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,256 KB
testcase_01 AC 39 ms
53,148 KB
testcase_02 AC 105 ms
101,900 KB
testcase_03 AC 82 ms
98,612 KB
testcase_04 AC 48 ms
68,380 KB
testcase_05 AC 106 ms
101,988 KB
testcase_06 AC 104 ms
102,148 KB
testcase_07 AC 56 ms
75,332 KB
testcase_08 AC 63 ms
83,856 KB
testcase_09 AC 46 ms
64,404 KB
testcase_10 AC 48 ms
65,640 KB
testcase_11 AC 73 ms
91,136 KB
testcase_12 AC 72 ms
90,788 KB
testcase_13 AC 59 ms
80,352 KB
testcase_14 AC 89 ms
102,252 KB
testcase_15 AC 98 ms
108,924 KB
testcase_16 AC 65 ms
87,264 KB
testcase_17 AC 104 ms
101,972 KB
testcase_18 AC 60 ms
81,264 KB
testcase_19 AC 85 ms
101,692 KB
testcase_20 AC 103 ms
102,264 KB
testcase_21 AC 45 ms
61,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
L = list(map(int,input().split()))
L = L[::-1]
S = 0
mod = 998244353
S = 1
SUM = L[0]
ans = 0
for i in range(1,len(L)):
    ans += L[i]*S - SUM
    SUM += (SUM + L[i])
    SUM %= mod
    S += (S+1)
    S %= mod
print(ans%mod)
0