結果

問題 No.356 円周上を回る3つの動点の一致
ユーザー kk
提出日時 2021-03-10 22:59:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 5,000 ms
コード長 384 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 54,200 KB
最終ジャッジ日時 2024-10-12 12:50:01
合計ジャッジ時間 3,785 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,948 KB
testcase_01 AC 37 ms
53,332 KB
testcase_02 AC 37 ms
52,592 KB
testcase_03 AC 38 ms
52,612 KB
testcase_04 AC 37 ms
52,496 KB
testcase_05 AC 37 ms
52,600 KB
testcase_06 AC 37 ms
53,736 KB
testcase_07 AC 38 ms
53,312 KB
testcase_08 AC 37 ms
53,140 KB
testcase_09 AC 37 ms
52,592 KB
testcase_10 AC 37 ms
52,756 KB
testcase_11 AC 38 ms
53,696 KB
testcase_12 AC 37 ms
53,200 KB
testcase_13 AC 38 ms
52,908 KB
testcase_14 AC 37 ms
53,768 KB
testcase_15 AC 37 ms
52,324 KB
testcase_16 AC 37 ms
52,320 KB
testcase_17 AC 38 ms
52,996 KB
testcase_18 AC 38 ms
52,520 KB
testcase_19 AC 38 ms
53,632 KB
testcase_20 AC 39 ms
53,196 KB
testcase_21 AC 38 ms
53,368 KB
testcase_22 AC 37 ms
52,472 KB
testcase_23 AC 38 ms
52,664 KB
testcase_24 AC 38 ms
52,620 KB
testcase_25 AC 37 ms
53,052 KB
testcase_26 AC 36 ms
53,776 KB
testcase_27 AC 37 ms
52,592 KB
testcase_28 AC 37 ms
54,200 KB
testcase_29 AC 37 ms
53,592 KB
testcase_30 AC 37 ms
53,148 KB
testcase_31 AC 37 ms
53,744 KB
testcase_32 AC 38 ms
52,464 KB
testcase_33 AC 37 ms
52,948 KB
testcase_34 AC 38 ms
52,512 KB
testcase_35 AC 38 ms
52,848 KB
testcase_36 AC 38 ms
52,656 KB
testcase_37 AC 37 ms
52,936 KB
testcase_38 AC 37 ms
53,284 KB
testcase_39 AC 39 ms
52,408 KB
testcase_40 AC 39 ms
52,412 KB
testcase_41 AC 38 ms
53,612 KB
testcase_42 AC 38 ms
53,976 KB
testcase_43 AC 38 ms
53,668 KB
testcase_44 AC 38 ms
53,748 KB
testcase_45 AC 37 ms
53,112 KB
testcase_46 AC 38 ms
52,916 KB
testcase_47 AC 37 ms
52,876 KB
testcase_48 AC 38 ms
52,892 KB
testcase_49 AC 38 ms
52,880 KB
testcase_50 AC 37 ms
53,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

def lcm(a, b):
    return a // gcd(a, b) * b

def main():
    t1 = int(input())
    t2 = int(input())
    t3 = int(input())

    p1, q1 = t1 * t2, t2 - t1
    p2, q2 = t1 * t3, t3 - t1

    q = lcm(q1, q2)
    p1 *= q // q1
    p2 *= q // q2
    p = lcm(p1, p2)

    g = gcd(p, q)
    print("{}/{}".format(p // g, q // g))

if __name__ == "__main__":
    main()
0