結果

問題 No.229 線分上を往復する3つの動点の一致
ユーザー titiatitia
提出日時 2024-12-16 02:39:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 41 ms / 5,000 ms
コード長 474 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-12-16 02:39:16
合計ジャッジ時間 3,421 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
11,008 KB
testcase_01 AC 31 ms
11,008 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 31 ms
10,880 KB
testcase_08 AC 31 ms
10,880 KB
testcase_09 AC 31 ms
10,880 KB
testcase_10 AC 31 ms
11,008 KB
testcase_11 AC 31 ms
10,880 KB
testcase_12 AC 32 ms
10,880 KB
testcase_13 AC 32 ms
10,880 KB
testcase_14 AC 31 ms
10,880 KB
testcase_15 AC 31 ms
10,752 KB
testcase_16 AC 32 ms
10,880 KB
testcase_17 AC 32 ms
11,008 KB
testcase_18 AC 32 ms
10,752 KB
testcase_19 AC 31 ms
10,880 KB
testcase_20 AC 30 ms
10,752 KB
testcase_21 AC 31 ms
10,880 KB
testcase_22 AC 31 ms
10,880 KB
testcase_23 AC 31 ms
11,008 KB
testcase_24 AC 31 ms
10,752 KB
testcase_25 AC 30 ms
10,880 KB
testcase_26 AC 30 ms
10,880 KB
testcase_27 AC 31 ms
10,752 KB
testcase_28 AC 31 ms
10,880 KB
testcase_29 AC 31 ms
10,880 KB
testcase_30 AC 30 ms
11,008 KB
testcase_31 AC 31 ms
10,880 KB
testcase_32 AC 31 ms
11,008 KB
testcase_33 AC 32 ms
11,008 KB
testcase_34 AC 31 ms
10,880 KB
testcase_35 AC 32 ms
10,752 KB
testcase_36 AC 30 ms
11,008 KB
testcase_37 AC 30 ms
11,008 KB
testcase_38 AC 31 ms
10,880 KB
testcase_39 AC 32 ms
10,752 KB
testcase_40 AC 31 ms
10,880 KB
testcase_41 AC 30 ms
11,008 KB
testcase_42 AC 31 ms
10,752 KB
testcase_43 AC 41 ms
10,880 KB
testcase_44 AC 30 ms
11,008 KB
testcase_45 AC 29 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd,lcm

a=int(input())
b=int(input())
c=int(input())

g=gcd(a*b,a+b)
X=[a*b//g,(a+b)//g]

g=gcd(a*b,b-a)
X2=[a*b//g,(b-a)//g]

g=gcd(b*c,b+c)
Y=[b*c//g,(b+c)//g]

g=gcd(b*c,c-b)
Y2=[b*c//g,(c-b)//g]



L=X[1]*X2[1]*Y[1]*Y2[1]

c1=lcm(X[0]*(L//X[1]),Y[0]*(L//Y[1]))
c2=lcm(X2[0]*(L//X2[1]),Y[0]*(L//Y[1]))
c3=lcm(X[0]*(L//X[1]),Y2[0]*(L//Y2[1]))
c4=lcm(X2[0]*(L//X2[1]),Y2[0]*(L//Y2[1]))

ANS=min(c1,c2,c3,c4)

G=gcd(ANS,L)

print(str(ANS//G)+"/"+str(L//G))
0