結果

問題 No.229 線分上を往復する3つの動点の一致
ユーザー maimai
提出日時 2016-06-14 23:00:13
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 375 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-04-17 19:46:06
合計ジャッジ時間 5,141 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 87 ms
12,160 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 88 ms
12,160 KB
testcase_05 AC 87 ms
12,288 KB
testcase_06 AC 90 ms
12,160 KB
testcase_07 AC 90 ms
12,416 KB
testcase_08 AC 87 ms
12,160 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 86 ms
12,288 KB
testcase_13 AC 87 ms
12,288 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 84 ms
12,160 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 85 ms
12,160 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 84 ms
12,160 KB
testcase_26 AC 83 ms
12,288 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

#分からない・・・_(:3 」∠ )_

def abs(x);x<0 ? -x : x;end

def ct(u,v)
    return Rational(u.denominator*v.denominator,(u.numerator*v.denominator).gcd(v.numerator*u.denominator))
end

a,b,c=[gets,gets,gets].map{|e|Rational(e.to_i,1)}

dbc=abs(1/b-1/c)
dac=abs(1/a-1/c)
abc=   (1/b+1/c)
aac=   (1/a+1/c)

puts [ct(dac,dbc),ct(dac,abc),ct(aac,dbc),ct(aac,abc)].max
0