結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
12,032 KB
testcase_01 AC 87 ms
12,160 KB
testcase_02 AC 86 ms
12,160 KB
testcase_03 AC 84 ms
12,032 KB
testcase_04 AC 98 ms
12,416 KB
testcase_05 AC 120 ms
12,160 KB
testcase_06 AC 170 ms
12,928 KB
testcase_07 AC 273 ms
13,952 KB
testcase_08 AC 483 ms
16,256 KB
testcase_09 AC 845 ms
19,968 KB
testcase_10 AC 837 ms
19,840 KB
testcase_11 AC 828 ms
19,840 KB
testcase_12 AC 850 ms
19,840 KB
testcase_13 AC 858 ms
19,968 KB
testcase_14 AC 857 ms
19,840 KB
testcase_15 AC 849 ms
19,968 KB
testcase_16 AC 847 ms
19,840 KB
testcase_17 AC 843 ms
19,840 KB
testcase_18 AC 853 ms
19,968 KB
testcase_19 AC 979 ms
19,840 KB
testcase_20 AC 84 ms
12,032 KB
testcase_21 AC 86 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

$p=*0...n=gets.to_i
a=$p.map{Complex(*gets.split)}
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