結果

問題 No.229 線分上を往復する3つの動点の一致
ユーザー GrenacheGrenache
提出日時 2015-06-20 12:21:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 159 ms / 5,000 ms
コード長 1,119 bytes
コンパイル時間 4,062 ms
コンパイル使用メモリ 79,120 KB
実行使用メモリ 42,340 KB
最終ジャッジ日時 2024-07-07 15:09:33
合計ジャッジ時間 10,467 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
42,156 KB
testcase_01 AC 142 ms
42,280 KB
testcase_02 AC 133 ms
42,164 KB
testcase_03 AC 132 ms
41,852 KB
testcase_04 AC 132 ms
42,024 KB
testcase_05 AC 136 ms
42,224 KB
testcase_06 AC 159 ms
41,720 KB
testcase_07 AC 123 ms
42,176 KB
testcase_08 AC 123 ms
41,952 KB
testcase_09 AC 130 ms
41,976 KB
testcase_10 AC 131 ms
41,840 KB
testcase_11 AC 133 ms
42,228 KB
testcase_12 AC 134 ms
41,844 KB
testcase_13 AC 139 ms
42,128 KB
testcase_14 AC 124 ms
41,992 KB
testcase_15 AC 129 ms
41,864 KB
testcase_16 AC 138 ms
42,080 KB
testcase_17 AC 122 ms
41,876 KB
testcase_18 AC 121 ms
41,828 KB
testcase_19 AC 129 ms
41,704 KB
testcase_20 AC 131 ms
41,712 KB
testcase_21 AC 134 ms
41,932 KB
testcase_22 AC 141 ms
42,156 KB
testcase_23 AC 123 ms
41,896 KB
testcase_24 AC 120 ms
41,788 KB
testcase_25 AC 129 ms
41,556 KB
testcase_26 AC 116 ms
42,152 KB
testcase_27 AC 129 ms
42,204 KB
testcase_28 AC 141 ms
41,984 KB
testcase_29 AC 120 ms
41,856 KB
testcase_30 AC 138 ms
42,268 KB
testcase_31 AC 132 ms
42,340 KB
testcase_32 AC 138 ms
42,292 KB
testcase_33 AC 121 ms
41,704 KB
testcase_34 AC 117 ms
41,836 KB
testcase_35 AC 131 ms
41,852 KB
testcase_36 AC 130 ms
42,160 KB
testcase_37 AC 140 ms
42,156 KB
testcase_38 AC 130 ms
42,232 KB
testcase_39 AC 120 ms
41,868 KB
testcase_40 AC 126 ms
42,224 KB
testcase_41 AC 134 ms
41,892 KB
testcase_42 AC 143 ms
41,844 KB
testcase_43 AC 143 ms
42,284 KB
testcase_44 AC 139 ms
42,188 KB
testcase_45 AC 130 ms
41,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder229 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        long t1 = sc.nextLong();
        long t2 = sc.nextLong();
        long t3 = sc.nextLong();

//        long lcm = lcm(t1, lcm(t2, t3));
        long lcm = t1 * t2 * t3;

        long max = 1;
        max = Math.max(max, gcd(gcd(Math.abs(t2 - t1) * t3, Math.abs(t3 - t2) * t1), Math.abs(t1 - t3) * t2));
        max = Math.max(max, gcd(gcd(Math.abs(t2 - t1) * t3, Math.abs(t3 + t2) * t1), Math.abs(t1 + t3) * t2));
        max = Math.max(max, gcd(gcd(Math.abs(t3 - t2) * t1, Math.abs(t1 + t3) * t2), Math.abs(t2 + t1) * t3));
        max = Math.max(max, gcd(gcd(Math.abs(t1 - t3) * t2, Math.abs(t2 + t1) * t3), Math.abs(t3 + t2) * t1));

        long gcd = gcd(lcm, max);
        System.out.println(lcm / gcd + "/" + max / gcd);
        
        sc.close();
    }

    private static long lcm(long n, long m) {
		return n * m / gcd(n, m);
	}

	private static long gcd(long n, long m) {
		if (m == 0) {
			return n;
		} else {
			return gcd(m, n % m);
		}
	}
}
0