結果

問題 No.2355 Unhappy Back Dance
ユーザー tailstails
提出日時 2023-06-16 22:46:42
言語 cLay
(20240714-1)
結果
AC  
実行時間 204 ms / 6,000 ms
コード長 385 bytes
コンパイル時間 6,240 ms
コンパイル使用メモリ 211,944 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-24 15:40:50
合計ジャッジ時間 10,567 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 63 ms
6,940 KB
testcase_07 AC 98 ms
6,940 KB
testcase_08 AC 92 ms
6,944 KB
testcase_09 AC 128 ms
6,940 KB
testcase_10 AC 114 ms
6,944 KB
testcase_11 AC 137 ms
6,944 KB
testcase_12 AC 143 ms
6,944 KB
testcase_13 AC 146 ms
6,940 KB
testcase_14 AC 130 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 201 ms
6,944 KB
testcase_17 AC 204 ms
6,944 KB
testcase_18 AC 201 ms
6,944 KB
testcase_19 AC 202 ms
6,948 KB
testcase_20 AC 203 ms
6,944 KB
testcase_21 AC 81 ms
6,940 KB
testcase_22 AC 15 ms
6,944 KB
testcase_23 AC 17 ms
6,944 KB
testcase_24 AC 179 ms
6,940 KB
testcase_25 AC 96 ms
6,940 KB
testcase_26 AC 96 ms
6,940 KB
testcase_27 AC 80 ms
6,944 KB
testcase_28 AC 3 ms
6,940 KB
testcase_29 AC 6 ms
6,944 KB
testcase_30 AC 161 ms
6,944 KB
testcase_31 AC 115 ms
6,944 KB
testcase_32 AC 13 ms
6,944 KB
testcase_33 AC 65 ms
6,940 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 4 ms
6,944 KB
testcase_36 AC 79 ms
6,940 KB
testcase_37 AC 41 ms
6,944 KB
testcase_38 AC 52 ms
6,944 KB
testcase_39 AC 40 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll@n,x[n],y[],d[],z=0;
double a[];
rd((x,y)(n));
rep(i,n){
	rep(j,n){
		if(i!=j){
			a[j]=atan2(y[j]-y[i],x[j]-x[i]);
		}
	}
	a[i]=a[n-1];
	sortA_index(n-1,a,d);
	rep(k,n-2){
		if(a[k]==a[k+1]){
			ll j1=d[k],j2=d[k+1];
			if(j1==i){
				j1=n-1;
			}
			if(j2==i){
				j2=n-1;
			}
			if((y[j1]-y[i])*(x[j2]-x[i])==(y[j2]-y[i])*(x[j1]-x[i])){
				z+=1;
				break;
			}
		}
	}
}
wt(z);
0