結果

問題 No.2374 ASKT Subsequences
ユーザー tailstails
提出日時 2023-07-07 22:59:09
言語 cLay
(20240714-1)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 3,009 ms
コンパイル使用メモリ 174,144 KB
実行使用メモリ 34,944 KB
最終ジャッジ日時 2024-07-21 19:16:33
合計ジャッジ時間 5,112 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
34,944 KB
testcase_01 AC 30 ms
34,816 KB
testcase_02 AC 32 ms
34,944 KB
testcase_03 AC 31 ms
34,816 KB
testcase_04 AC 31 ms
34,688 KB
testcase_05 AC 31 ms
34,816 KB
testcase_06 AC 31 ms
34,944 KB
testcase_07 AC 33 ms
34,944 KB
testcase_08 AC 31 ms
34,688 KB
testcase_09 AC 31 ms
34,944 KB
testcase_10 AC 32 ms
34,816 KB
testcase_11 AC 32 ms
34,944 KB
testcase_12 AC 32 ms
34,816 KB
testcase_13 AC 32 ms
34,944 KB
testcase_14 AC 31 ms
34,944 KB
testcase_15 AC 35 ms
34,944 KB
testcase_16 AC 32 ms
34,816 KB
testcase_17 AC 33 ms
34,816 KB
testcase_18 AC 36 ms
34,816 KB
testcase_19 AC 35 ms
34,816 KB
testcase_20 AC 41 ms
34,944 KB
testcase_21 AC 44 ms
34,944 KB
testcase_22 AC 40 ms
34,816 KB
testcase_23 AC 36 ms
34,816 KB
testcase_24 AC 35 ms
34,944 KB
testcase_25 AC 35 ms
34,816 KB
testcase_26 AC 52 ms
34,944 KB
testcase_27 AC 37 ms
34,944 KB
testcase_28 AC 41 ms
34,816 KB
testcase_29 AC 36 ms
34,944 KB
testcase_30 AC 38 ms
34,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll@n,@a[n],z=0,d[2001][2012]{};
rep(i,n){
	d[i+1][0..2011]=d[i][0..];
	d[i+1][a[i]+10]+=1;
}
rep(x,1,n-2){
	rep(y,x+1,n-1){
		if(a[x]>a[y]){
			z+=d[x][a[y]]*(d[n][a[x]+11]-d[y+1][a[x]+11]);
		}
	}
}
wt(z);
0