結果

問題 No.2111 Sum of Diff
ユーザー kotatsugamekotatsugame
提出日時 2022-10-28 21:28:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 356 bytes
コンパイル時間 591 ms
コンパイル使用メモリ 67,120 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-06 00:29:20
合計ジャッジ時間 2,466 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 86 ms
6,944 KB
testcase_03 AC 58 ms
6,944 KB
testcase_04 AC 14 ms
6,944 KB
testcase_05 AC 85 ms
6,944 KB
testcase_06 AC 86 ms
6,944 KB
testcase_07 AC 22 ms
6,944 KB
testcase_08 AC 30 ms
6,944 KB
testcase_09 AC 8 ms
6,940 KB
testcase_10 AC 10 ms
6,940 KB
testcase_11 AC 42 ms
6,940 KB
testcase_12 AC 41 ms
6,940 KB
testcase_13 AC 27 ms
6,940 KB
testcase_14 AC 70 ms
6,944 KB
testcase_15 AC 81 ms
6,944 KB
testcase_16 AC 36 ms
6,944 KB
testcase_17 AC 85 ms
6,944 KB
testcase_18 AC 28 ms
6,940 KB
testcase_19 AC 64 ms
6,940 KB
testcase_20 AC 83 ms
6,940 KB
testcase_21 AC 4 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:7:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    7 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<atcoder/modint>
using namespace std;
using mint=atcoder::modint998244353;
int N,A[2<<17];
mint p2[2<<17];
main()
{
	cin>>N;
	p2[0]=1;
	for(int i=1;i<=N;i++)p2[i]=p2[i-1]*2;
	mint ans=0,prv=0,pc=0;
	for(int i=0;i<N;i++)
	{
		cin>>A[i];
		ans-=(pc*A[i]+prv)*p2[N-i-1];
		prv-=A[i]*p2[i];
		pc+=p2[i];
	}
	cout<<ans.val()<<endl;
}
0