結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー tailstails
提出日時 2020-06-03 01:24:54
言語 cLay
(20240714-1)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 228 bytes
コンパイル時間 3,252 ms
コンパイル使用メモリ 179,080 KB
実行使用メモリ 24,392 KB
最終ジャッジ日時 2024-07-05 13:34:30
合計ジャッジ時間 7,436 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
11,848 KB
testcase_01 AC 2 ms
11,848 KB
testcase_02 AC 35 ms
21,348 KB
testcase_03 AC 48 ms
20,992 KB
testcase_04 AC 48 ms
22,476 KB
testcase_05 AC 16 ms
24,392 KB
testcase_06 AC 16 ms
23,240 KB
testcase_07 AC 8 ms
13,516 KB
testcase_08 AC 24 ms
23,296 KB
testcase_09 AC 4 ms
8,268 KB
testcase_10 AC 12 ms
12,928 KB
testcase_11 AC 9 ms
10,368 KB
testcase_12 AC 8 ms
8,192 KB
testcase_13 AC 34 ms
15,104 KB
testcase_14 AC 43 ms
17,152 KB
testcase_15 AC 52 ms
21,068 KB
testcase_16 AC 21 ms
13,512 KB
testcase_17 AC 54 ms
20,480 KB
testcase_18 AC 15 ms
12,872 KB
testcase_19 AC 50 ms
19,840 KB
testcase_20 AC 15 ms
11,588 KB
testcase_21 AC 18 ms
10,752 KB
testcase_22 AC 49 ms
18,176 KB
testcase_23 AC 2 ms
7,876 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 8 ms
7,808 KB
testcase_26 AC 28 ms
12,928 KB
testcase_27 AC 27 ms
12,928 KB
testcase_28 AC 45 ms
17,792 KB
testcase_29 AC 6 ms
8,776 KB
testcase_30 AC 53 ms
19,456 KB
testcase_31 AC 38 ms
17,352 KB
testcase_32 AC 24 ms
11,776 KB
testcase_33 AC 50 ms
19,200 KB
testcase_34 AC 18 ms
12,788 KB
testcase_35 AC 54 ms
19,712 KB
testcase_36 AC 3 ms
7,772 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 2 ms
5,376 KB
testcase_39 AC 2 ms
5,376 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 70 ms
24,192 KB
testcase_42 AC 19 ms
13,128 KB
testcase_43 AC 33 ms
14,976 KB
testcase_44 AC 12 ms
8,064 KB
testcase_45 AC 31 ms
14,848 KB
testcase_46 AC 2 ms
5,376 KB
testcase_47 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

int n,m,x,y,p[2d5],q[2d5],P[2d5],Q[2d5];
double c[2d5],r[2d5];
wgraph<double>g;
{
	rd(n,m,x--,y--,(p,q)(n),(P--,Q--)(m));
	rep(i,m)c[i]=hypot(p[Q[i]]-p[P[i]],q[Q[i]]-q[P[i]]);
	g.setEdge(n,m,P,Q,c);
	g.getDist(x,r);
	wt(r[y]);
}
0