結果

問題 No.229 線分上を往復する3つの動点の一致
ユーザー convexineqconvexineq
提出日時 2020-12-29 08:15:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 5,000 ms
コード長 549 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 54,232 KB
最終ジャッジ日時 2024-10-04 23:09:57
合計ジャッジ時間 3,479 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,864 KB
testcase_01 AC 35 ms
53,176 KB
testcase_02 AC 37 ms
52,380 KB
testcase_03 AC 38 ms
52,392 KB
testcase_04 AC 35 ms
53,264 KB
testcase_05 AC 35 ms
53,020 KB
testcase_06 AC 35 ms
53,088 KB
testcase_07 AC 37 ms
52,520 KB
testcase_08 AC 36 ms
53,444 KB
testcase_09 AC 39 ms
52,792 KB
testcase_10 AC 36 ms
53,256 KB
testcase_11 AC 36 ms
53,320 KB
testcase_12 AC 36 ms
52,880 KB
testcase_13 AC 35 ms
52,540 KB
testcase_14 AC 35 ms
52,560 KB
testcase_15 AC 34 ms
52,380 KB
testcase_16 AC 35 ms
54,232 KB
testcase_17 AC 36 ms
53,484 KB
testcase_18 AC 38 ms
52,900 KB
testcase_19 AC 36 ms
52,956 KB
testcase_20 AC 36 ms
53,472 KB
testcase_21 AC 37 ms
52,800 KB
testcase_22 AC 40 ms
52,132 KB
testcase_23 AC 37 ms
52,200 KB
testcase_24 AC 38 ms
53,432 KB
testcase_25 AC 39 ms
53,860 KB
testcase_26 AC 36 ms
53,688 KB
testcase_27 AC 36 ms
53,540 KB
testcase_28 AC 37 ms
52,644 KB
testcase_29 AC 37 ms
53,916 KB
testcase_30 AC 48 ms
52,512 KB
testcase_31 AC 36 ms
53,744 KB
testcase_32 AC 36 ms
53,676 KB
testcase_33 AC 37 ms
52,804 KB
testcase_34 AC 37 ms
52,604 KB
testcase_35 AC 36 ms
53,356 KB
testcase_36 AC 36 ms
52,756 KB
testcase_37 AC 36 ms
52,744 KB
testcase_38 AC 37 ms
52,856 KB
testcase_39 AC 35 ms
53,128 KB
testcase_40 AC 35 ms
52,936 KB
testcase_41 AC 37 ms
52,000 KB
testcase_42 AC 37 ms
53,760 KB
testcase_43 AC 36 ms
52,456 KB
testcase_44 AC 37 ms
53,252 KB
testcase_45 AC 36 ms
52,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(p,q,r,s):
    x = q*r//gcd(p*s,q*r)
    return x*p,q

def get(a,b):# 正面衝突、背面衝突が何秒ごとか?
    p1,q1 = a*b,a+b
    g = gcd(a,b)
    x,y = b//g, a//g
    if x%2 == y%2 == 1:
        t = 2*(x-x*(a+b)//2//b)
    else:
        t = 2*x - x*(a+b)//b
    p2, q2 = x*a, t        
    return [(p1,q1),(p2,q2)]


from math import gcd
a,b,c = map(int,open(0).read().split())
ans = [solve(p,q,r,s) for p,q in get(a,b) for r,s in get(a,c)]
ans.sort(key = lambda x: x[0]/x[1])
p,q = ans[0]
g = gcd(p,q)
print(f"{p//g}/{q//g}")
0