結果

問題 No.1300 Sum of Inversions
ユーザー tailstails
提出日時 2020-11-30 10:59:16
言語 cLay
(20240714-1)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 407 bytes
コンパイル時間 6,805 ms
コンパイル使用メモリ 219,332 KB
実行使用メモリ 13,696 KB
最終ジャッジ日時 2024-07-05 14:48:12
合計ジャッジ時間 10,689 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,656 KB
testcase_01 AC 4 ms
6,656 KB
testcase_02 AC 4 ms
6,528 KB
testcase_03 AC 38 ms
12,544 KB
testcase_04 AC 39 ms
12,160 KB
testcase_05 AC 33 ms
11,392 KB
testcase_06 AC 44 ms
13,056 KB
testcase_07 AC 42 ms
12,672 KB
testcase_08 AC 47 ms
13,312 KB
testcase_09 AC 46 ms
13,312 KB
testcase_10 AC 26 ms
10,880 KB
testcase_11 AC 27 ms
10,880 KB
testcase_12 AC 39 ms
12,416 KB
testcase_13 AC 37 ms
12,160 KB
testcase_14 AC 50 ms
13,696 KB
testcase_15 AC 46 ms
13,312 KB
testcase_16 AC 41 ms
12,544 KB
testcase_17 AC 26 ms
10,624 KB
testcase_18 AC 30 ms
11,264 KB
testcase_19 AC 35 ms
11,776 KB
testcase_20 AC 35 ms
11,904 KB
testcase_21 AC 34 ms
11,776 KB
testcase_22 AC 32 ms
11,520 KB
testcase_23 AC 43 ms
13,056 KB
testcase_24 AC 33 ms
11,520 KB
testcase_25 AC 28 ms
11,008 KB
testcase_26 AC 28 ms
11,008 KB
testcase_27 AC 31 ms
11,392 KB
testcase_28 AC 47 ms
13,312 KB
testcase_29 AC 34 ms
11,776 KB
testcase_30 AC 46 ms
13,184 KB
testcase_31 AC 32 ms
11,520 KB
testcase_32 AC 34 ms
11,520 KB
testcase_33 AC 14 ms
9,984 KB
testcase_34 AC 20 ms
10,624 KB
testcase_35 AC 32 ms
13,056 KB
testcase_36 AC 34 ms
13,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define MD 998244353

struct S {
	Mint a,b,c,d;
	S(int){}
	S(Mint a,Mint b,Mint c,Mint d):a(a),b(b),c(c),d(d){}
	void operator+=(S const& s){
		a+=s.a;
		b+=s.b;
		c+=s.c;
		d+=s.d;
	}
};

int a[2d5],c[2d5];
{
	fenwick<S>f;
	f.walloc(2d5,1);
	Mint sum=0;
	ll @n;
	rd(a(n));
	coordcomp(n,a,c);
	rep(i,n){
		S s=f.get(n-c[i]-1);
		sum+=a[i]*s.b+s.d;
		f.add(n-c[i],S(1,s.a,a[i],a[i]*s.a+s.c));
	}
	wt(sum);
}
0