結果

問題 No.1113 二つの整数 / Two Integers
ユーザー ks2mks2m
提出日時 2020-07-17 21:22:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 1,000 ms
コード長 493 bytes
コンパイル時間 1,799 ms
コンパイル使用メモリ 74,444 KB
実行使用メモリ 54,144 KB
最終ジャッジ日時 2024-05-07 13:20:23
合計ジャッジ時間 4,439 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
54,084 KB
testcase_01 AC 105 ms
52,788 KB
testcase_02 AC 121 ms
54,132 KB
testcase_03 AC 110 ms
52,944 KB
testcase_04 AC 118 ms
53,968 KB
testcase_05 AC 105 ms
54,004 KB
testcase_06 AC 115 ms
53,888 KB
testcase_07 AC 114 ms
54,048 KB
testcase_08 AC 103 ms
54,144 KB
testcase_09 AC 119 ms
54,140 KB
testcase_10 AC 106 ms
53,072 KB
testcase_11 AC 110 ms
53,952 KB
testcase_12 AC 113 ms
53,964 KB
testcase_13 AC 112 ms
53,880 KB
testcase_14 AC 105 ms
52,900 KB
testcase_15 AC 112 ms
53,940 KB
testcase_16 AC 113 ms
53,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		long a = sc.nextLong();
		long b = sc.nextLong();
		sc.close();

		long g = gcd(a, b);
		long s = (long) Math.sqrt(g) - 10;
		for (long i = s; i < s + 20; i++) {
			if (i * i == g) {
				System.out.println("Odd");
				return;
			}
		}
		System.out.println("Even");
	}

	static long gcd(long a, long b) {
		return b == 0 ? a : gcd(b, a % b);
	}
}
0