結果

問題 No.229 線分上を往復する3つの動点の一致
ユーザー GrenacheGrenache
提出日時 2015-06-19 23:49:27
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,248 bytes
コンパイル時間 2,937 ms
コンパイル使用メモリ 79,752 KB
実行使用メモリ 56,964 KB
最終ジャッジ日時 2024-07-07 04:29:04
合計ジャッジ時間 33,023 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 609 ms
54,516 KB
testcase_01 AC 117 ms
53,128 KB
testcase_02 AC 129 ms
54,904 KB
testcase_03 AC 143 ms
54,588 KB
testcase_04 AC 112 ms
52,948 KB
testcase_05 AC 124 ms
53,988 KB
testcase_06 AC 110 ms
53,168 KB
testcase_07 AC 1,494 ms
53,388 KB
testcase_08 AC 2,895 ms
53,264 KB
testcase_09 WA -
testcase_10 AC 122 ms
54,352 KB
testcase_11 WA -
testcase_12 AC 307 ms
53,364 KB
testcase_13 AC 121 ms
53,968 KB
testcase_14 WA -
testcase_15 AC 136 ms
54,600 KB
testcase_16 AC 170 ms
54,264 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 458 ms
53,096 KB
testcase_21 AC 414 ms
55,024 KB
testcase_22 AC 1,965 ms
55,132 KB
testcase_23 AC 1,944 ms
54,796 KB
testcase_24 AC 2,046 ms
54,740 KB
testcase_25 AC 363 ms
53,828 KB
testcase_26 AC 165 ms
53,440 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 1,418 ms
54,532 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 125 ms
54,604 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 129 ms
54,856 KB
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));

        t1 = lcm / t1;
        t2 = lcm / t2;
        t3 = lcm / t3;
        long i;
        long max = Math.max(t1, Math.max(t2, t3));
        for (i = max; i > 0; i--) {
        	long m1 = t1 % i;
        	long m2 = t2 % i;
        	long m3 = t3 % i;
        	if (m1 == m2 || m2 == m3 || m1 == m3) {
        		if (m1 == m2 && m3 + m1 == i) {
        			break;
        		} else if (m2 == m3 && m1 + m2 == i) {
        			break;
        		} else if (m3 == m1 && m2 + m3 == i) {
        			break;
        		}
        	}
        }

        if (i == 0) {
        	System.out.println(lcm + "/" + 1);
        	
        } else {
        	long gcd = gcd(lcm, i);
        	System.out.println(lcm / gcd + "/" + i / 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