結果

問題 No.795 Restrictions!!!!!!!!!!!!!!
ユーザー fog_878fog_878
提出日時 2019-03-15 22:44:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 196 ms / 2,000 ms
コード長 638 bytes
コンパイル時間 2,068 ms
コンパイル使用メモリ 75,328 KB
実行使用メモリ 54,544 KB
最終ジャッジ日時 2024-07-01 21:18:59
合計ジャッジ時間 6,996 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 191 ms
54,332 KB
testcase_01 AC 191 ms
54,120 KB
testcase_02 AC 186 ms
54,288 KB
testcase_03 AC 186 ms
54,324 KB
testcase_04 AC 192 ms
53,896 KB
testcase_05 AC 190 ms
53,984 KB
testcase_06 AC 195 ms
54,140 KB
testcase_07 AC 193 ms
54,544 KB
testcase_08 AC 188 ms
54,136 KB
testcase_09 AC 186 ms
54,052 KB
testcase_10 AC 194 ms
54,208 KB
testcase_11 AC 186 ms
53,900 KB
testcase_12 AC 191 ms
54,184 KB
testcase_13 AC 188 ms
54,048 KB
testcase_14 AC 191 ms
54,480 KB
testcase_15 AC 191 ms
54,112 KB
testcase_16 AC 187 ms
54,264 KB
testcase_17 AC 196 ms
54,240 KB
testcase_18 AC 195 ms
54,144 KB
testcase_19 AC 193 ms
54,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Main main = new Main();
		main.solve();
	}

	void solve() {
		Scanner sc = new Scanner(System.in);
		String n = sc.next();
		String m = sc.next();
		sc.close();
	 	int nlen = n.length();
		int mlen = m.length();

		int end_n = Integer.parseInt(n.substring(nlen-1, nlen));
		int end_m = Integer.parseInt(m.substring(mlen-1, mlen));
		if(end_n == 0)end_n+=2;
		if(end_m == 0)end_m+=2;


		boolean f = false;
		if(end_m%2==1)f=false;
		else if(end_n%2==0&&end_m%2==0)f=true;
		else if(mlen > 1)f = true;
		
		System.out.println(f?"Yes":"No");;
	}

}
0