結果

問題 No.1113 二つの整数 / Two Integers
ユーザー 遭難者遭難者
提出日時 2020-10-13 18:37:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 149 ms / 1,000 ms
コード長 442 bytes
コンパイル時間 3,808 ms
コンパイル使用メモリ 79,624 KB
実行使用メモリ 41,540 KB
最終ジャッジ日時 2024-07-20 18:40:35
合計ジャッジ時間 7,006 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,008 KB
testcase_01 AC 136 ms
41,032 KB
testcase_02 AC 136 ms
41,540 KB
testcase_03 AC 138 ms
41,076 KB
testcase_04 AC 146 ms
41,144 KB
testcase_05 AC 134 ms
41,080 KB
testcase_06 AC 148 ms
41,216 KB
testcase_07 AC 149 ms
41,420 KB
testcase_08 AC 139 ms
41,004 KB
testcase_09 AC 146 ms
40,828 KB
testcase_10 AC 142 ms
41,008 KB
testcase_11 AC 145 ms
40,956 KB
testcase_12 AC 135 ms
41,100 KB
testcase_13 AC 135 ms
41,076 KB
testcase_14 AC 131 ms
41,032 KB
testcase_15 AC 133 ms
41,088 KB
testcase_16 AC 139 ms
41,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		PrintWriter ou = new PrintWriter(System.out);
		long a = Long.parseLong(sc.next());
		long b = Long.parseLong(sc.next());
		long t = a % b;
		while(t != 0){
			a = b;
			b = t;
			t = a % b;
		}
		if(Math.sqrt(b) % 1 == 0) ou.println("Odd");
		else ou.println("Even");
		ou.flush();
		sc.close();
	}
}
0