結果

問題 No.694 square1001 and Permutation 3
ユーザー tailstails
提出日時 2018-06-15 19:00:20
言語 cLay
(20240714-1)
結果
AC  
実行時間 98 ms / 3,000 ms
コード長 177 bytes
コンパイル時間 5,937 ms
コンパイル使用メモリ 217,628 KB
実行使用メモリ 23,168 KB
最終ジャッジ日時 2024-07-05 13:06:04
合計ジャッジ時間 10,120 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 58 ms
21,120 KB
testcase_08 AC 82 ms
21,504 KB
testcase_09 AC 96 ms
23,168 KB
testcase_10 AC 50 ms
15,232 KB
testcase_11 AC 96 ms
23,168 KB
testcase_12 AC 98 ms
23,168 KB
testcase_13 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll r,n,a[6d5];
fenwick<int>t;
{
	rd(n,a(n));
	coordcomp(n,a);
	t.walloc(n);
	t.init(n);
	rep(i,n)r+=i-t.get(a[i]),t.add(a[i],1);
	rep(i,n)wt(r),r+=n-t.get(a[i])-t.get(a[i]-1);
}
0