結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
12,288 KB
testcase_01 AC 93 ms
12,032 KB
testcase_02 AC 93 ms
12,160 KB
testcase_03 AC 92 ms
12,160 KB
testcase_04 AC 105 ms
12,288 KB
testcase_05 AC 130 ms
12,416 KB
testcase_06 AC 186 ms
13,184 KB
testcase_07 AC 305 ms
14,720 KB
testcase_08 AC 520 ms
17,664 KB
testcase_09 AC 919 ms
23,296 KB
testcase_10 AC 920 ms
23,296 KB
testcase_11 AC 906 ms
23,552 KB
testcase_12 AC 933 ms
23,680 KB
testcase_13 AC 914 ms
23,808 KB
testcase_14 AC 930 ms
23,424 KB
testcase_15 AC 915 ms
23,808 KB
testcase_16 AC 924 ms
23,808 KB
testcase_17 AC 937 ms
23,552 KB
testcase_18 AC 922 ms
23,552 KB
testcase_19 AC 1,075 ms
23,680 KB
testcase_20 AC 91 ms
11,904 KB
testcase_21 AC 91 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

a=(1..n=gets.to_i).map{Complex(*gets.split)}
d=(0...n).map{|u|(0...n).map{|v|(a[u]-a[v]).abs}}
$p=*0...n
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)}}
a=1
n.times{|u|n.times{|v|r(u)==r(v)&&a=[a,2+d[u][v]].max}}
p a
0