結果

問題 No.2415 偶数判定!Nafmoくん
ユーザー shiroinoshiroino
提出日時 2024-03-03 14:49:31
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 372 bytes
コンパイル時間 3,111 ms
コンパイル使用メモリ 74,676 KB
実行使用メモリ 54,244 KB
最終ジャッジ日時 2024-09-29 16:53:13
合計ジャッジ時間 6,305 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
53,864 KB
testcase_01 AC 105 ms
54,048 KB
testcase_02 WA -
testcase_03 AC 100 ms
54,072 KB
testcase_04 WA -
testcase_05 AC 95 ms
53,036 KB
testcase_06 WA -
testcase_07 AC 96 ms
52,956 KB
testcase_08 WA -
testcase_09 AC 92 ms
53,016 KB
testcase_10 AC 105 ms
54,120 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 114 ms
54,120 KB
testcase_14 AC 106 ms
53,908 KB
testcase_15 AC 99 ms
52,972 KB
testcase_16 AC 95 ms
52,832 KB
testcase_17 AC 96 ms
53,004 KB
testcase_18 AC 109 ms
54,020 KB
testcase_19 AC 101 ms
53,080 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 112 ms
54,148 KB
testcase_23 AC 102 ms
53,084 KB
testcase_24 AC 101 ms
52,820 KB
testcase_25 AC 107 ms
54,056 KB
testcase_26 AC 110 ms
53,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Hello {
	public static void main(String[] args) {
		
		Scanner scanner = new Scanner(System.in);
		String a = scanner.next();
		String b = scanner.next();
		if( a.substring(a.length()-1).equals(b.substring(b.length()-1))){
			System.out.println("Odd");
		}else{
			System.out.println("Even");
		}
	
	    scanner.close();
       
	}
}
0