結果

問題 No.229 線分上を往復する3つの動点の一致
ユーザー pekempeypekempey
提出日時 2015-06-20 13:47:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 169 ms / 5,000 ms
コード長 2,034 bytes
コンパイル時間 2,619 ms
コンパイル使用メモリ 80,232 KB
実行使用メモリ 42,624 KB
最終ジャッジ日時 2024-07-07 15:12:17
合計ジャッジ時間 11,352 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 165 ms
42,464 KB
testcase_01 AC 163 ms
42,196 KB
testcase_02 AC 162 ms
42,168 KB
testcase_03 AC 163 ms
42,108 KB
testcase_04 AC 158 ms
42,136 KB
testcase_05 AC 163 ms
42,624 KB
testcase_06 AC 165 ms
42,488 KB
testcase_07 AC 168 ms
42,384 KB
testcase_08 AC 167 ms
42,064 KB
testcase_09 AC 164 ms
42,372 KB
testcase_10 AC 161 ms
42,204 KB
testcase_11 AC 165 ms
42,408 KB
testcase_12 AC 161 ms
42,600 KB
testcase_13 AC 166 ms
42,168 KB
testcase_14 AC 169 ms
42,420 KB
testcase_15 AC 163 ms
42,136 KB
testcase_16 AC 163 ms
42,420 KB
testcase_17 AC 167 ms
42,124 KB
testcase_18 AC 167 ms
42,028 KB
testcase_19 AC 166 ms
42,368 KB
testcase_20 AC 150 ms
42,080 KB
testcase_21 AC 154 ms
42,200 KB
testcase_22 AC 152 ms
42,400 KB
testcase_23 AC 150 ms
42,068 KB
testcase_24 AC 165 ms
42,264 KB
testcase_25 AC 163 ms
42,420 KB
testcase_26 AC 163 ms
42,096 KB
testcase_27 AC 162 ms
42,420 KB
testcase_28 AC 166 ms
42,448 KB
testcase_29 AC 164 ms
42,444 KB
testcase_30 AC 165 ms
42,156 KB
testcase_31 AC 165 ms
42,096 KB
testcase_32 AC 151 ms
42,084 KB
testcase_33 AC 166 ms
42,220 KB
testcase_34 AC 164 ms
42,424 KB
testcase_35 AC 162 ms
42,372 KB
testcase_36 AC 165 ms
42,440 KB
testcase_37 AC 161 ms
42,268 KB
testcase_38 AC 150 ms
42,044 KB
testcase_39 AC 165 ms
42,144 KB
testcase_40 AC 164 ms
42,456 KB
testcase_41 AC 164 ms
42,616 KB
testcase_42 AC 163 ms
42,420 KB
testcase_43 AC 149 ms
42,352 KB
testcase_44 AC 164 ms
42,228 KB
testcase_45 AC 163 ms
42,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;

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

        int[] t = new int[3];

        for (int i = 0; i < 3; i++) {
            t[i] = cin.nextInt();
        }

        Arrays.sort(t);

        BigInteger[] T = new BigInteger[3];
        T[0] = BigInteger.valueOf(t[0]);
        T[1] = BigInteger.valueOf(t[1]);
        T[2] = BigInteger.valueOf(t[2]);

        BigInteger[] W = new BigInteger[6];

        W[0] = T[0].add(T[1]);
        W[1] = T[1].add(T[2]);
        W[2] = T[2].add(T[0]);
        W[3] = T[1].subtract(T[0]);
        W[4] = T[2].subtract(T[1]);
        W[5] = T[2].subtract(T[0]);

        BigInteger L = W[0];

        for (int i = 0; i < 6; i++) {
            L = lcm(L, W[i]);
        }

        BigInteger[] S = new BigInteger[6];

        S[0] = L.multiply(T[0]).multiply(T[1]).divide(W[0]);
        S[1] = L.multiply(T[1]).multiply(T[2]).divide(W[1]);
        S[2] = L.multiply(T[2]).multiply(T[0]).divide(W[2]);
        S[3] = L.multiply(T[0]).multiply(T[1]).divide(W[3]);
        S[4] = L.multiply(T[1]).multiply(T[2]).divide(W[4]);
        S[5] = L.multiply(T[2]).multiply(T[0]).divide(W[5]);

        BigInteger[] n = new BigInteger[8];

        n[0] = lcm(S[0], S[1], S[2]);
        n[1] = lcm(S[3], S[1], S[2]);
        n[2] = lcm(S[0], S[4], S[2]);
        n[3] = lcm(S[3], S[4], S[2]);
        n[4] = lcm(S[0], S[1], S[5]);
        n[5] = lcm(S[3], S[1], S[5]);
        n[6] = lcm(S[0], S[4], S[5]);
        n[7] = lcm(S[3], S[4], S[5]);

        BigInteger x = n[0];

        for (int i = 0; i < 8; i++) {
            x = x.min(n[i]);
        }

        BigInteger g = x.gcd(L);

        x = x.divide(g);
        L = L.divide(g);

        System.out.println(x + "/" + L);
    }

    static BigInteger lcm(BigInteger a, BigInteger b) {
        return a.multiply(b).divide(a.gcd(b));
    }

    static BigInteger lcm(BigInteger a, BigInteger b, BigInteger c) {
        return lcm(a, lcm(b, c));
    }
}
0