結果

問題 No.795 Restrictions!!!!!!!!!!!!!!
ユーザー tentententen
提出日時 2020-12-09 18:14:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 205 ms / 2,000 ms
コード長 550 bytes
コンパイル時間 2,200 ms
コンパイル使用メモリ 74,200 KB
実行使用メモリ 42,180 KB
最終ジャッジ日時 2024-09-19 01:21:00
合計ジャッジ時間 7,065 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 200 ms
42,028 KB
testcase_01 AC 198 ms
41,752 KB
testcase_02 AC 197 ms
42,112 KB
testcase_03 AC 197 ms
41,800 KB
testcase_04 AC 194 ms
41,836 KB
testcase_05 AC 198 ms
42,044 KB
testcase_06 AC 197 ms
41,816 KB
testcase_07 AC 199 ms
42,052 KB
testcase_08 AC 195 ms
41,832 KB
testcase_09 AC 198 ms
41,668 KB
testcase_10 AC 201 ms
41,960 KB
testcase_11 AC 198 ms
42,172 KB
testcase_12 AC 196 ms
41,908 KB
testcase_13 AC 197 ms
42,180 KB
testcase_14 AC 198 ms
41,948 KB
testcase_15 AC 205 ms
41,840 KB
testcase_16 AC 200 ms
41,740 KB
testcase_17 AC 199 ms
42,112 KB
testcase_18 AC 199 ms
42,152 KB
testcase_19 AC 200 ms
41,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        char[] n = sc.next().toCharArray();
        char[] m = sc.next().toCharArray();
        boolean isNEv = ((n[n.length - 1] - '0') % 2 == 0);
        boolean isMEv = ((m[m.length - 1] - '0') % 2 == 0);
        int mLength = m.length;
        if ((isNEv && isMEv) || (!isNEv && isMEv && mLength > 1)) {
            System.out.println("Yes");
        } else {
            System.out.println("No");
        }
    }
}
0