結果

問題 No.136 Yet Another GCD Problem
ユーザー kou6839kou6839
提出日時 2015-02-23 16:08:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 393 bytes
コンパイル時間 2,064 ms
コンパイル使用メモリ 74,684 KB
実行使用メモリ 54,440 KB
最終ジャッジ日時 2024-06-23 21:56:45
合計ジャッジ時間 8,734 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,288 KB
testcase_01 AC 125 ms
54,136 KB
testcase_02 AC 124 ms
54,100 KB
testcase_03 AC 128 ms
54,004 KB
testcase_04 AC 134 ms
54,324 KB
testcase_05 AC 132 ms
54,124 KB
testcase_06 AC 134 ms
54,240 KB
testcase_07 AC 127 ms
54,084 KB
testcase_08 AC 130 ms
54,024 KB
testcase_09 AC 127 ms
54,392 KB
testcase_10 AC 120 ms
53,200 KB
testcase_11 AC 119 ms
52,712 KB
testcase_12 AC 127 ms
54,300 KB
testcase_13 AC 128 ms
54,112 KB
testcase_14 AC 134 ms
54,120 KB
testcase_15 AC 132 ms
54,144 KB
testcase_16 AC 121 ms
52,684 KB
testcase_17 AC 136 ms
54,276 KB
testcase_18 AC 129 ms
54,016 KB
testcase_19 AC 134 ms
53,944 KB
testcase_20 AC 131 ms
53,936 KB
testcase_21 AC 130 ms
53,952 KB
testcase_22 AC 130 ms
53,908 KB
testcase_23 AC 129 ms
54,172 KB
testcase_24 AC 130 ms
53,960 KB
testcase_25 AC 125 ms
54,004 KB
testcase_26 AC 126 ms
54,324 KB
testcase_27 AC 133 ms
54,304 KB
testcase_28 AC 133 ms
54,068 KB
testcase_29 AC 127 ms
54,320 KB
testcase_30 AC 127 ms
53,984 KB
testcase_31 AC 128 ms
53,888 KB
testcase_32 AC 127 ms
54,220 KB
testcase_33 AC 126 ms
53,964 KB
testcase_34 AC 133 ms
54,028 KB
testcase_35 AC 134 ms
54,156 KB
testcase_36 AC 132 ms
54,440 KB
testcase_37 AC 137 ms
54,000 KB
testcase_38 AC 131 ms
53,972 KB
testcase_39 AC 130 ms
54,128 KB
testcase_40 AC 126 ms
54,204 KB
testcase_41 AC 129 ms
54,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main {
	static int gcd(int dai,int syou){
		if(syou==0) return dai;
		else return gcd(syou, dai%syou);
		
	}
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int x = sc.nextInt();
		int y=sc.nextInt();
		int ans=1;
		for(int i=1;i<=x/2;i++){
			ans=Math.max(ans, gcd(x-i, i));
		}
		System.out.println(ans);
	}
}
0