結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,990 ms
88,484 KB
testcase_01 AC 130 ms
87,936 KB
testcase_02 AC 132 ms
88,320 KB
testcase_03 AC 130 ms
88,376 KB
testcase_04 AC 2,154 ms
88,832 KB
testcase_05 AC 2,377 ms
88,880 KB
testcase_06 AC 271 ms
88,948 KB
testcase_07 AC 565 ms
88,740 KB
testcase_08 AC 1,270 ms
88,832 KB
testcase_09 AC 133 ms
88,444 KB
testcase_10 AC 134 ms
88,192 KB
testcase_11 AC 130 ms
88,448 KB
testcase_12 AC 1,276 ms
88,816 KB
testcase_13 AC 2,416 ms
88,320 KB
testcase_14 AC 1,300 ms
88,960 KB
testcase_15 AC 136 ms
88,704 KB
testcase_16 AC 2,420 ms
88,960 KB
testcase_17 AC 281 ms
88,832 KB
testcase_18 AC 133 ms
88,448 KB
testcase_19 AC 1,154 ms
88,704 KB
testcase_20 AC 136 ms
88,816 KB
testcase_21 AC 161 ms
88,704 KB
testcase_22 AC 727 ms
88,960 KB
testcase_23 AC 961 ms
88,832 KB
testcase_24 AC 218 ms
88,704 KB
testcase_25 AC 402 ms
88,744 KB
testcase_26 AC 360 ms
88,660 KB
testcase_27 AC 1,603 ms
88,832 KB
testcase_28 AC 1,616 ms
88,320 KB
testcase_29 AC 1,696 ms
88,704 KB
testcase_30 AC 336 ms
88,448 KB
testcase_31 AC 164 ms
88,704 KB
testcase_32 AC 162 ms
88,624 KB
testcase_33 AC 514 ms
88,704 KB
testcase_34 AC 1,164 ms
88,320 KB
testcase_35 AC 201 ms
88,752 KB
testcase_36 AC 578 ms
88,732 KB
testcase_37 AC 135 ms
88,832 KB
testcase_38 AC 164 ms
88,780 KB
testcase_39 AC 187 ms
88,960 KB
testcase_40 AC 137 ms
88,832 KB
testcase_41 AC 179 ms
88,692 KB
testcase_42 AC 142 ms
88,908 KB
testcase_43 AC 599 ms
88,480 KB
testcase_44 AC 216 ms
88,728 KB
testcase_45 AC 397 ms
88,664 KB
testcase_46 AC 289 ms
88,724 KB
testcase_47 AC 135 ms
88,448 KB
testcase_48 AC 133 ms
88,832 KB
testcase_49 AC 142 ms
88,808 KB
testcase_50 AC 135 ms
88,704 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_max = max(period) - 1

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

    period_max -= 1

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