結果

問題 No.94 圏外です。(EASY)
ユーザー 👑 hos.lyrichos.lyric
提出日時 2015-02-24 01:43:40
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,600 ms / 5,000 ms
コード長 290 bytes
コンパイル時間 123 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 24,064 KB
最終ジャッジ日時 2024-06-26 07:28:21
合計ジャッジ時間 19,068 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
12,416 KB
testcase_01 AC 87 ms
12,032 KB
testcase_02 AC 89 ms
12,416 KB
testcase_03 AC 86 ms
12,160 KB
testcase_04 AC 108 ms
12,416 KB
testcase_05 AC 147 ms
12,800 KB
testcase_06 AC 237 ms
13,312 KB
testcase_07 AC 422 ms
14,720 KB
testcase_08 AC 783 ms
17,792 KB
testcase_09 AC 1,426 ms
23,680 KB
testcase_10 AC 1,428 ms
23,680 KB
testcase_11 AC 1,409 ms
23,936 KB
testcase_12 AC 1,408 ms
23,936 KB
testcase_13 AC 1,399 ms
23,680 KB
testcase_14 AC 1,406 ms
23,680 KB
testcase_15 AC 1,405 ms
23,936 KB
testcase_16 AC 1,417 ms
23,680 KB
testcase_17 AC 1,416 ms
23,936 KB
testcase_18 AC 1,410 ms
24,064 KB
testcase_19 AC 1,600 ms
23,936 KB
testcase_20 AC 90 ms
12,288 KB
testcase_21 AC 88 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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