結果

問題 No.1265 Balloon Survival
ユーザー tailstails
提出日時 2020-10-23 23:34:03
言語 cLay
(20240714-1)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 359 bytes
コンパイル時間 4,634 ms
コンパイル使用メモリ 213,072 KB
実行使用メモリ 19,200 KB
最終ジャッジ日時 2024-07-05 14:37:00
合計ジャッジ時間 6,344 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 6 ms
5,376 KB
testcase_15 AC 5 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 28 ms
11,776 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 7 ms
5,376 KB
testcase_21 AC 13 ms
7,424 KB
testcase_22 AC 8 ms
6,016 KB
testcase_23 AC 9 ms
6,144 KB
testcase_24 AC 52 ms
19,200 KB
testcase_25 AC 51 ms
18,944 KB
testcase_26 AC 51 ms
18,944 KB
testcase_27 AC 51 ms
19,072 KB
testcase_28 AC 50 ms
19,072 KB
testcase_29 AC 51 ms
19,200 KB
testcase_30 AC 51 ms
19,200 KB
testcase_31 AC 50 ms
19,200 KB
testcase_32 AC 50 ms
19,072 KB
testcase_33 AC 50 ms
18,944 KB
testcase_34 AC 1 ms
5,376 KB
testcase_35 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll n,w,x[1000],y[1000],z[1000];
int ai[500000],aj[500000];ll ad[500000];
{
	rd(n,(x,y)(n));
	int k=0;
	rep(i,n)rep(j,i)ai[k]=i,aj[k]=j,ad[k]=(x[j]-x[i])**2+(y[j]-y[i])**2,++k;
	sortA(k,ad,ai,aj);
	rep(l,k){
		int i=ai[l];
		int j=aj[l];
		if(j==0){
			if(!z[i]){
				z[i]=1;
				w+=1;
			}
		}else{
			if(!z[i]&&!z[j]){
				z[i]=z[j]=1;
			}
		}
	}
	wt(w);
}
0