結果

問題 No.356 円周上を回る3つの動点の一致
ユーザー ynyn
提出日時 2016-04-02 00:31:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,273 ms / 5,000 ms
コード長 558 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 81,884 KB
実行使用メモリ 89,072 KB
最終ジャッジ日時 2024-10-13 21:08:40
合計ジャッジ時間 21,116 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,536 ms
88,460 KB
testcase_01 AC 126 ms
88,536 KB
testcase_02 AC 130 ms
88,156 KB
testcase_03 AC 122 ms
88,172 KB
testcase_04 AC 979 ms
88,896 KB
testcase_05 AC 1,098 ms
88,892 KB
testcase_06 AC 213 ms
88,604 KB
testcase_07 AC 414 ms
88,528 KB
testcase_08 AC 1,168 ms
88,844 KB
testcase_09 AC 125 ms
88,412 KB
testcase_10 AC 125 ms
88,564 KB
testcase_11 AC 121 ms
88,476 KB
testcase_12 AC 1,200 ms
88,840 KB
testcase_13 AC 127 ms
88,840 KB
testcase_14 AC 122 ms
88,080 KB
testcase_15 AC 121 ms
88,492 KB
testcase_16 AC 2,273 ms
88,676 KB
testcase_17 AC 124 ms
88,932 KB
testcase_18 AC 120 ms
88,572 KB
testcase_19 AC 871 ms
88,932 KB
testcase_20 AC 125 ms
88,420 KB
testcase_21 AC 142 ms
88,672 KB
testcase_22 AC 336 ms
88,700 KB
testcase_23 AC 418 ms
88,836 KB
testcase_24 AC 127 ms
88,876 KB
testcase_25 AC 203 ms
88,768 KB
testcase_26 AC 208 ms
88,716 KB
testcase_27 AC 902 ms
88,988 KB
testcase_28 AC 588 ms
88,884 KB
testcase_29 AC 574 ms
88,816 KB
testcase_30 AC 219 ms
88,976 KB
testcase_31 AC 125 ms
88,916 KB
testcase_32 AC 131 ms
88,864 KB
testcase_33 AC 213 ms
88,824 KB
testcase_34 AC 200 ms
88,980 KB
testcase_35 AC 134 ms
88,548 KB
testcase_36 AC 180 ms
89,072 KB
testcase_37 AC 116 ms
88,408 KB
testcase_38 AC 139 ms
88,916 KB
testcase_39 AC 140 ms
88,828 KB
testcase_40 AC 129 ms
88,736 KB
testcase_41 AC 130 ms
88,824 KB
testcase_42 AC 125 ms
88,796 KB
testcase_43 AC 381 ms
88,740 KB
testcase_44 AC 183 ms
88,828 KB
testcase_45 AC 158 ms
88,940 KB
testcase_46 AC 142 ms
88,884 KB
testcase_47 AC 123 ms
88,424 KB
testcase_48 AC 127 ms
88,600 KB
testcase_49 AC 125 ms
88,604 KB
testcase_50 AC 125 ms
88,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import fractions

def gcd(a, b):
    while b:
        a, b = b, a%b
    return a

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

def reduce(p, q):
    common = gcd(p, q)
    return (p // common, q // common)


t1 = int(input())
t2 = int(input())
t3 = int(input())

t = lcm(t1, t2)
t = lcm(t, t3)

period = [t//t1, t//t2, t//t3]
period_min = min(period)

while period_min > 0:
    if period[0]%period_min == period[1]%period_min == period[2]%period_min:
        D = period_min
        break

    period_min -= 1

N, D = reduce(t, D)
print(str(N) + "/" + str(D))
0