結果

問題 No.229 線分上を往復する3つの動点の一致
ユーザー GrenacheGrenache
提出日時 2015-06-20 11:57:58
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,024 bytes
コンパイル時間 3,463 ms
コンパイル使用メモリ 84,148 KB
実行使用メモリ 55,384 KB
最終ジャッジ日時 2024-07-07 15:09:00
合計ジャッジ時間 11,828 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
42,412 KB
testcase_01 AC 146 ms
42,452 KB
testcase_02 AC 132 ms
42,444 KB
testcase_03 AC 145 ms
42,400 KB
testcase_04 AC 146 ms
42,440 KB
testcase_05 AC 154 ms
42,548 KB
testcase_06 WA -
testcase_07 AC 152 ms
42,316 KB
testcase_08 AC 161 ms
42,376 KB
testcase_09 AC 147 ms
42,612 KB
testcase_10 AC 145 ms
41,956 KB
testcase_11 AC 136 ms
42,196 KB
testcase_12 AC 144 ms
42,400 KB
testcase_13 WA -
testcase_14 AC 156 ms
42,336 KB
testcase_15 AC 147 ms
42,336 KB
testcase_16 WA -
testcase_17 AC 147 ms
42,368 KB
testcase_18 AC 146 ms
42,324 KB
testcase_19 AC 145 ms
42,260 KB
testcase_20 AC 145 ms
42,476 KB
testcase_21 WA -
testcase_22 AC 146 ms
42,496 KB
testcase_23 AC 147 ms
42,448 KB
testcase_24 AC 154 ms
42,412 KB
testcase_25 AC 156 ms
42,304 KB
testcase_26 AC 139 ms
42,344 KB
testcase_27 AC 134 ms
42,508 KB
testcase_28 AC 148 ms
42,316 KB
testcase_29 AC 150 ms
42,640 KB
testcase_30 WA -
testcase_31 AC 151 ms
42,328 KB
testcase_32 WA -
testcase_33 AC 147 ms
42,428 KB
testcase_34 AC 147 ms
42,268 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 144 ms
42,212 KB
testcase_39 AC 147 ms
42,208 KB
testcase_40 WA -
testcase_41 AC 151 ms
42,468 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

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 max = 1;
        max = Math.max(max, gcd(gcd(Math.abs(t2 - t1), Math.abs(t3 - t2)), Math.abs(t1 - t3)));
        max = Math.max(max, gcd(gcd(Math.abs(t2 - t1), Math.abs(t3 + t2)), Math.abs(t1 + t3)));
        max = Math.max(max, gcd(gcd(Math.abs(t3 - t2), Math.abs(t1 + t3)), Math.abs(t2 + t1)));
        max = Math.max(max, gcd(gcd(Math.abs(t1 - t3), Math.abs(t2 + t1)), Math.abs(t3 + t2)));

        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