結果

問題 No.2769 Number of Rhombi
ユーザー tailstails
提出日時 2024-05-31 23:14:50
言語 cLay
(20240714-1)
結果
AC  
実行時間 1,109 ms / 5,000 ms
コード長 560 bytes
コンパイル時間 2,775 ms
コンパイル使用メモリ 186,764 KB
実行使用メモリ 87,680 KB
最終ジャッジ日時 2024-05-31 23:15:34
合計ジャッジ時間 28,749 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 373 ms
27,648 KB
testcase_04 AC 349 ms
25,728 KB
testcase_05 AC 413 ms
18,816 KB
testcase_06 AC 546 ms
23,168 KB
testcase_07 AC 792 ms
27,776 KB
testcase_08 AC 847 ms
28,416 KB
testcase_09 AC 796 ms
29,824 KB
testcase_10 AC 859 ms
31,872 KB
testcase_11 AC 827 ms
33,408 KB
testcase_12 AC 822 ms
35,072 KB
testcase_13 AC 831 ms
36,864 KB
testcase_14 AC 761 ms
39,808 KB
testcase_15 AC 807 ms
41,472 KB
testcase_16 AC 820 ms
43,904 KB
testcase_17 AC 796 ms
47,616 KB
testcase_18 AC 913 ms
57,856 KB
testcase_19 AC 947 ms
61,440 KB
testcase_20 AC 909 ms
65,024 KB
testcase_21 AC 1,008 ms
72,960 KB
testcase_22 AC 1,040 ms
79,872 KB
testcase_23 AC 1,109 ms
87,680 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 798 ms
36,736 KB
testcase_26 AC 743 ms
38,272 KB
testcase_27 AC 817 ms
48,000 KB
testcase_28 AC 792 ms
43,008 KB
testcase_29 AC 930 ms
66,432 KB
testcase_30 AC 829 ms
45,056 KB
testcase_31 AC 814 ms
35,072 KB
testcase_32 AC 744 ms
28,416 KB
testcase_33 AC 782 ms
28,288 KB
testcase_34 AC 771 ms
31,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

map<pair<ll,ll>,map<pair<ll,ll>,ll>>mm;
ll@n,@(x,y)[n],z=0;
rep(i,n){
	rep(j,i){
		ll cx=x[i]+x[j];
		ll cy=y[i]+y[j];
		map<pair<ll,ll>,ll>&m=mm[{cx,cy}];
		ll dx=x[i]-x[j];
		ll dy=y[i]-y[j];
		ll ex;
		ll ey;
		if(dx==0){
			dy=1;
			ex=1;
			ey=0;
		}else if(dy==0){
			dx=1;
			ex=0;
			ey=1;
		}else{
			ll g=gcd(abs(dx),abs(dy));
			dx/=g;
			dy/=g;
			if(dy<0){
				dx=-dx;
				dy=-dy;
			}
			ex=-dy;
			ey=dx;
			if(ey<0){
				ex=-ex;
				ey=-ey;
			}
		}
		m[{dx,dy}]+=1;
		auto t=m.find({ex,ey});
		if(t!=m.end()){
			z+=t->second;
		}
	}
}
wt(z);
0