結果

問題 No.2012 Largest Triangle
ユーザー tailstails
提出日時 2022-08-03 19:45:33
言語 cLay
(20240714-1)
結果
AC  
実行時間 175 ms / 2,500 ms
コード長 196 bytes
コンパイル時間 4,974 ms
コンパイル使用メモリ 178,216 KB
実行使用メモリ 11,644 KB
最終ジャッジ日時 2024-09-13 13:18:26
合計ジャッジ時間 8,705 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
7,488 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 3 ms
7,492 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 39 ms
10,324 KB
testcase_17 AC 39 ms
11,516 KB
testcase_18 AC 39 ms
11,312 KB
testcase_19 AC 39 ms
11,460 KB
testcase_20 AC 39 ms
11,184 KB
testcase_21 AC 39 ms
11,332 KB
testcase_22 AC 39 ms
10,620 KB
testcase_23 AC 40 ms
11,644 KB
testcase_24 AC 39 ms
10,344 KB
testcase_25 AC 39 ms
11,316 KB
testcase_26 AC 48 ms
11,316 KB
testcase_27 AC 47 ms
11,184 KB
testcase_28 AC 48 ms
11,072 KB
testcase_29 AC 47 ms
9,536 KB
testcase_30 AC 48 ms
11,456 KB
testcase_31 AC 40 ms
11,588 KB
testcase_32 AC 40 ms
10,492 KB
testcase_33 AC 40 ms
11,336 KB
testcase_34 AC 40 ms
10,356 KB
testcase_35 AC 39 ms
11,184 KB
testcase_36 AC 2 ms
6,940 KB
testcase_37 AC 2 ms
6,940 KB
testcase_38 AC 2 ms
6,940 KB
testcase_39 AC 2 ms
6,944 KB
testcase_40 AC 2 ms
6,940 KB
testcase_41 AC 175 ms
6,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll@n,r=0,z=0,x,y;
Point2d<int,ll,double>@a[n],b[n+1];
n=ConvexHull(n,a,b);
rep(i,n){
	x=CrossProd(b[i],b[r>?=i]);
	while(y=CrossProd(b[i],b[r+1]),x<y){
		x=y;
		if(++r==n)r=0;
	}
	z>?=x;
}
wt(z);
0