結果

問題 No.280 歯車の問題(1)
ユーザー 37zigen37zigen
提出日時 2016-05-18 20:36:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 163 ms / 1,000 ms
コード長 717 bytes
コンパイル時間 3,728 ms
コンパイル使用メモリ 76,244 KB
実行使用メモリ 56,568 KB
最終ジャッジ日時 2024-10-06 05:37:58
合計ジャッジ時間 9,055 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
54,864 KB
testcase_01 AC 140 ms
54,956 KB
testcase_02 AC 140 ms
54,884 KB
testcase_03 AC 151 ms
54,740 KB
testcase_04 AC 137 ms
54,684 KB
testcase_05 AC 140 ms
54,404 KB
testcase_06 AC 144 ms
54,936 KB
testcase_07 AC 130 ms
54,668 KB
testcase_08 AC 149 ms
54,920 KB
testcase_09 AC 151 ms
55,036 KB
testcase_10 AC 157 ms
54,788 KB
testcase_11 AC 154 ms
54,972 KB
testcase_12 AC 157 ms
54,696 KB
testcase_13 AC 158 ms
54,808 KB
testcase_14 AC 150 ms
54,388 KB
testcase_15 AC 151 ms
54,912 KB
testcase_16 AC 158 ms
54,792 KB
testcase_17 AC 149 ms
54,940 KB
testcase_18 AC 149 ms
54,888 KB
testcase_19 AC 148 ms
54,832 KB
testcase_20 AC 161 ms
54,892 KB
testcase_21 AC 140 ms
54,180 KB
testcase_22 AC 153 ms
54,800 KB
testcase_23 AC 151 ms
54,280 KB
testcase_24 AC 129 ms
54,672 KB
testcase_25 AC 151 ms
54,740 KB
testcase_26 AC 140 ms
56,568 KB
testcase_27 AC 155 ms
55,116 KB
testcase_28 AC 155 ms
54,704 KB
testcase_29 AC 163 ms
54,420 KB
testcase_30 AC 146 ms
54,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.util.Scanner;
public class Main{
	public static void main(String[] args){
		new Main().solve();
	}
	void solve(){
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();
		long[] z=new long[n];
		for(int i=0;i<n;i++)z[i]=sc.nextLong();
		long gcd=gcd(z[0],z[n-1]);
		System.out.println(z[n-1]/gcd+"/"+z[0]/gcd);
		/*
		 *θ1 = z2/z1 * θ2
		 * 	 = z2/z1 * z3/2 * θ3
		 *   = z3/z1 * θ3
		 *...
		 *=zn/z1 * θn
		 *
		 *gr=θ1/θn=zn/z1
		 */
	}
	long lcm(long t1,long t2){
		long a=gcd(t1,t2);
		long tt1=t1/a;
		long tt2=t2/a;
		return tt1*tt2*a;
	}
	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