結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
12,416 KB
testcase_01 AC 95 ms
12,032 KB
testcase_02 AC 92 ms
12,416 KB
testcase_03 AC 94 ms
11,904 KB
testcase_04 AC 119 ms
12,672 KB
testcase_05 AC 157 ms
12,544 KB
testcase_06 AC 243 ms
13,440 KB
testcase_07 AC 433 ms
14,720 KB
testcase_08 AC 795 ms
17,792 KB
testcase_09 AC 1,443 ms
23,680 KB
testcase_10 AC 1,442 ms
23,936 KB
testcase_11 AC 1,435 ms
23,936 KB
testcase_12 AC 1,437 ms
23,552 KB
testcase_13 AC 1,437 ms
23,680 KB
testcase_14 AC 1,445 ms
23,808 KB
testcase_15 AC 1,435 ms
23,680 KB
testcase_16 AC 1,441 ms
23,680 KB
testcase_17 AC 1,445 ms
23,680 KB
testcase_18 AC 1,454 ms
23,936 KB
testcase_19 AC 1,634 ms
23,680 KB
testcase_20 AC 94 ms
12,416 KB
testcase_21 AC 92 ms
11,904 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

a=(1..n=gets.to_i).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