結果

問題 No.1113 二つの整数 / Two Integers
ユーザー tentententen
提出日時 2020-08-18 07:05:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 1,000 ms
コード長 526 bytes
コンパイル時間 2,171 ms
コンパイル使用メモリ 74,184 KB
実行使用メモリ 41,448 KB
最終ジャッジ日時 2024-10-11 19:42:42
合計ジャッジ時間 5,313 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,024 KB
testcase_01 AC 132 ms
41,112 KB
testcase_02 AC 131 ms
41,448 KB
testcase_03 AC 128 ms
41,240 KB
testcase_04 AC 129 ms
40,884 KB
testcase_05 AC 130 ms
41,044 KB
testcase_06 AC 127 ms
41,052 KB
testcase_07 AC 132 ms
41,324 KB
testcase_08 AC 123 ms
39,784 KB
testcase_09 AC 132 ms
41,304 KB
testcase_10 AC 127 ms
41,100 KB
testcase_11 AC 130 ms
41,208 KB
testcase_12 AC 129 ms
41,096 KB
testcase_13 AC 127 ms
41,040 KB
testcase_14 AC 128 ms
41,144 KB
testcase_15 AC 127 ms
41,212 KB
testcase_16 AC 127 ms
41,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		long a = sc.nextLong();
		long b = sc.nextLong();
		long gcd = getGCD(a, b);
		long sqrt = (long)Math.sqrt(gcd);
		if (sqrt * sqrt == gcd) {
		    System.out.println("Odd");
		} else {
		    System.out.println("Even");
		}
    }
    
    static long getGCD(long x, long y) {
        if (x % y == 0) {
            return y;
        } else {
            return getGCD(y, x % y);
        }
    }
    
}

0