結果

問題 No.168 ものさし
ユーザー gigurururugigurururu
提出日時 2015-04-01 20:23:01
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 321 bytes
コンパイル時間 35 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 58,908 KB
最終ジャッジ日時 2024-07-03 23:07:51
合計ジャッジ時間 8,758 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 685 ms
27,136 KB
testcase_01 AC 83 ms
12,416 KB
testcase_02 AC 82 ms
12,288 KB
testcase_03 AC 82 ms
12,288 KB
testcase_04 AC 81 ms
12,288 KB
testcase_05 AC 84 ms
12,288 KB
testcase_06 AC 84 ms
12,416 KB
testcase_07 AC 84 ms
12,288 KB
testcase_08 AC 83 ms
12,288 KB
testcase_09 AC 96 ms
12,416 KB
testcase_10 AC 137 ms
13,184 KB
testcase_11 AC 614 ms
19,968 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

UF=Hash.new{|_,k|k}
def u a,b;UF[f a]=UF[f b]end
def f c;c==UF[c]?c:UF[c]=f(UF[c])end

n=gets.to_i
ans2=(1..n).map{|i|[i,Complex(*gets.split.map(&:to_i))]}
  .combination(2).map{|(i,ic),(j,jc)|[(ic-jc).abs2,i,j]}
  .sort.find{|d,i,j|
    u(i,j)
    f(1)==f(n)
  }[0]
ans=(ans2**0.5/10).ceil*10
p ans*ans<ans2 ?ans+10:ans
0