結果

問題 No.94 圏外です。(EASY)
ユーザー 👑 hos.lyrichos.lyric
提出日時 2015-02-24 03:07:43
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,019 ms / 5,000 ms
コード長 244 bytes
コンパイル時間 53 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 20,096 KB
最終ジャッジ日時 2024-06-26 07:29:06
合計ジャッジ時間 12,426 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
12,288 KB
testcase_01 AC 94 ms
12,032 KB
testcase_02 AC 93 ms
12,288 KB
testcase_03 AC 94 ms
12,160 KB
testcase_04 AC 105 ms
12,288 KB
testcase_05 AC 129 ms
12,288 KB
testcase_06 AC 182 ms
12,800 KB
testcase_07 AC 287 ms
13,952 KB
testcase_08 AC 495 ms
16,256 KB
testcase_09 AC 869 ms
19,712 KB
testcase_10 AC 862 ms
19,968 KB
testcase_11 AC 849 ms
19,968 KB
testcase_12 AC 870 ms
19,712 KB
testcase_13 AC 863 ms
19,840 KB
testcase_14 AC 865 ms
19,968 KB
testcase_15 AC 865 ms
19,968 KB
testcase_16 AC 865 ms
19,712 KB
testcase_17 AC 870 ms
20,096 KB
testcase_18 AC 869 ms
19,840 KB
testcase_19 AC 1,019 ms
19,840 KB
testcase_20 AC 93 ms
12,160 KB
testcase_21 AC 91 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

a=(1..n=gets.to_i).map{Complex(*gets.split)}
$p=*0...n
d=$p.map{|u|$p.map{|v|(a[u]-a[v]).abs}}
def r u;u==$p[u]?u:$p[u]=r($p[u])end
n.times{|u|n.times{|v|d[u][v]>10||$p[r v]=r(u)}}
z=1
n.times{|u|n.times{|v|r(u)==r(v)&&z=[z,2+d[u][v]].max}}
p z
0