結果

問題 No.356 円周上を回る3つの動点の一致
ユーザー GrenacheGrenache
提出日時 2016-04-01 23:27:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 717 bytes
コンパイル時間 3,166 ms
コンパイル使用メモリ 74,628 KB
実行使用メモリ 41,720 KB
最終ジャッジ日時 2024-10-13 21:07:42
合計ジャッジ時間 10,751 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
39,964 KB
testcase_01 AC 110 ms
41,628 KB
testcase_02 AC 118 ms
41,380 KB
testcase_03 AC 120 ms
41,060 KB
testcase_04 AC 111 ms
40,860 KB
testcase_05 AC 116 ms
41,056 KB
testcase_06 AC 117 ms
41,116 KB
testcase_07 AC 107 ms
41,152 KB
testcase_08 AC 118 ms
41,148 KB
testcase_09 AC 118 ms
41,136 KB
testcase_10 AC 115 ms
41,360 KB
testcase_11 AC 107 ms
39,964 KB
testcase_12 AC 111 ms
40,140 KB
testcase_13 AC 121 ms
41,308 KB
testcase_14 AC 117 ms
41,080 KB
testcase_15 AC 118 ms
41,456 KB
testcase_16 AC 116 ms
41,212 KB
testcase_17 AC 115 ms
41,396 KB
testcase_18 AC 107 ms
41,520 KB
testcase_19 AC 121 ms
41,296 KB
testcase_20 AC 111 ms
39,964 KB
testcase_21 AC 111 ms
39,860 KB
testcase_22 AC 119 ms
41,372 KB
testcase_23 AC 122 ms
41,236 KB
testcase_24 AC 108 ms
41,116 KB
testcase_25 AC 108 ms
41,144 KB
testcase_26 AC 111 ms
40,076 KB
testcase_27 AC 113 ms
41,648 KB
testcase_28 AC 120 ms
41,356 KB
testcase_29 AC 121 ms
41,016 KB
testcase_30 AC 119 ms
41,228 KB
testcase_31 AC 122 ms
41,320 KB
testcase_32 AC 108 ms
40,964 KB
testcase_33 AC 115 ms
40,092 KB
testcase_34 AC 126 ms
41,128 KB
testcase_35 AC 109 ms
40,968 KB
testcase_36 AC 107 ms
39,632 KB
testcase_37 AC 117 ms
41,424 KB
testcase_38 AC 117 ms
39,984 KB
testcase_39 AC 120 ms
41,380 KB
testcase_40 AC 123 ms
41,080 KB
testcase_41 AC 118 ms
41,140 KB
testcase_42 AC 122 ms
41,176 KB
testcase_43 AC 106 ms
40,060 KB
testcase_44 AC 122 ms
40,972 KB
testcase_45 AC 119 ms
41,016 KB
testcase_46 AC 107 ms
41,124 KB
testcase_47 AC 120 ms
41,292 KB
testcase_48 AC 120 ms
41,116 KB
testcase_49 AC 112 ms
40,056 KB
testcase_50 AC 120 ms
41,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder356 {

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

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

        long tmp1 = (t3 - t2) * t1;
        long tmp2 = (t3 - t1) * t2;
        long tmp3 = (t2 - t1) * t3;

        long gcd = gcd(tmp1, tmp2);
        gcd = gcd(gcd, tmp3);

        long ret1 = t1 * t2 * t3;
        long ret2 = gcd;

        System.out.printf("%d/%d\n", ret1 / gcd(ret1, ret2), ret2 / gcd(ret1, ret2));

        sc.close();
    }

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