結果

問題 No.356 円周上を回る3つの動点の一致
ユーザー 37zigen37zigen
提出日時 2016-04-02 12:31:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,257 ms / 5,000 ms
コード長 911 bytes
コンパイル時間 4,232 ms
コンパイル使用メモリ 79,656 KB
実行使用メモリ 42,588 KB
最終ジャッジ日時 2024-10-13 21:13:49
合計ジャッジ時間 38,778 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,848 ms
42,444 KB
testcase_01 AC 158 ms
42,280 KB
testcase_02 AC 160 ms
42,024 KB
testcase_03 AC 159 ms
42,276 KB
testcase_04 AC 2,041 ms
42,516 KB
testcase_05 AC 2,220 ms
42,436 KB
testcase_06 AC 289 ms
42,416 KB
testcase_07 AC 558 ms
42,292 KB
testcase_08 AC 1,210 ms
42,204 KB
testcase_09 AC 157 ms
42,356 KB
testcase_10 AC 156 ms
42,332 KB
testcase_11 AC 157 ms
42,588 KB
testcase_12 AC 1,212 ms
42,484 KB
testcase_13 AC 2,257 ms
42,560 KB
testcase_14 AC 1,218 ms
42,288 KB
testcase_15 AC 157 ms
42,100 KB
testcase_16 AC 2,248 ms
42,340 KB
testcase_17 AC 295 ms
42,152 KB
testcase_18 AC 157 ms
42,216 KB
testcase_19 AC 1,097 ms
42,208 KB
testcase_20 AC 163 ms
42,108 KB
testcase_21 AC 189 ms
42,440 KB
testcase_22 AC 709 ms
42,244 KB
testcase_23 AC 936 ms
42,148 KB
testcase_24 AC 243 ms
42,216 KB
testcase_25 AC 411 ms
42,424 KB
testcase_26 AC 373 ms
42,540 KB
testcase_27 AC 1,508 ms
42,288 KB
testcase_28 AC 1,540 ms
42,400 KB
testcase_29 AC 1,603 ms
42,296 KB
testcase_30 AC 342 ms
42,068 KB
testcase_31 AC 190 ms
42,264 KB
testcase_32 AC 191 ms
42,584 KB
testcase_33 AC 498 ms
42,360 KB
testcase_34 AC 1,107 ms
42,096 KB
testcase_35 AC 227 ms
42,212 KB
testcase_36 AC 573 ms
42,412 KB
testcase_37 AC 141 ms
42,296 KB
testcase_38 AC 194 ms
42,444 KB
testcase_39 AC 211 ms
42,184 KB
testcase_40 AC 162 ms
42,160 KB
testcase_41 AC 211 ms
42,176 KB
testcase_42 AC 171 ms
42,332 KB
testcase_43 AC 587 ms
42,584 KB
testcase_44 AC 241 ms
42,296 KB
testcase_45 AC 399 ms
42,244 KB
testcase_46 AC 304 ms
42,448 KB
testcase_47 AC 157 ms
42,588 KB
testcase_48 AC 160 ms
42,432 KB
testcase_49 AC 168 ms
42,364 KB
testcase_50 AC 158 ms
42,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder356;
import java.util.Arrays;
import java.util.Scanner;
public class Main {
	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 lcm=LCM(t1,t2,t3);
		if(t1==t2&&t2==t3){
			System.out.println(0);
			return;
		}
		long[] d={lcm/t1,lcm/t2,lcm/t3};
		Arrays.sort(d);
		for(long i=d[2]-1;i>=1;i--){
			if(d[0]%i==d[1]%i&&d[1]%i==d[2]%i){
				long aaa=GCD(lcm,i);
				System.out.println(lcm/aaa+"/"+i/aaa);
				return;
			}
		}
	}
	//最小公倍数
	public static long LCM(long t1,long t2,long t3){
		return LCM(LCM(t1,t2),t3);
	}
	public static long LCM(long t1,long t2){
		long a=GCD(t1,t2);
		long tt1=t1/a;
		long tt2=t2/a;
		return tt1*tt2*a;
	}
	public static long GCD(long t1,long t2){
		if(t1<t2){
			long d=t2;
			t2=t1;
			t1=d;
		}
		if(t2==0)return t1;
		return GCD(t2,t1%t2);
	}
}
0