結果
問題 | No.229 線分上を往復する3つの動点の一致 |
ユーザー | rpy3cpp |
提出日時 | 2015-06-19 23:33:18 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 850 bytes |
コンパイル時間 | 119 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,520 KB |
最終ジャッジ日時 | 2024-07-07 04:20:42 |
合計ジャッジ時間 | 2,680 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 3 |
other | RE * 43 |
ソースコード
from fractions import gcd from fractions import Fraction as frac t1 = int(input()) t2 = int(input()) t3 = int(input()) def solve(t1, t2, t3): # + + M = t3 * (t2 + t1) K = t2 * (t3 + t1) c = gcd(M, K) m = M // c k = K // c tpp = frac(m * t1 * t2, t1 + t2) # + - M = t3 * (t2 + t1) K = t2 * (t3 - t1) c = gcd(M, K) m = M // c k = K // c tpm = frac(m * t1 * t2, t1 + t2) # - + M = t3 * (t2 - t1) K = t2 * (t3 + t1) c = gcd(M, K) m = M // c k = M // c tmp = frac(m * t1 * t2, t2 - t1) # - - M = t3 * (t2 - t1) K = t2 * (t3 - t1) c = gcd(M, K) m = M // c k = M // c tmm = frac(m * t1 * t2, t2 - t1) t_min = min(tpp, tpm, tmp, tmm) print('{}/{}'.format(t_min.numerator, t_min.denominator)) solve(t1, t2, t3)