結果

問題 No.85 TVザッピング(1)
ユーザー k_kadorak_kadora
提出日時 2015-06-19 22:02:36
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 329 bytes
コンパイル時間 3,466 ms
コンパイル使用メモリ 75,104 KB
実行使用メモリ 54,348 KB
最終ジャッジ日時 2024-07-07 04:00:07
合計ジャッジ時間 7,315 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
54,112 KB
testcase_01 AC 113 ms
53,856 KB
testcase_02 AC 113 ms
53,944 KB
testcase_03 AC 101 ms
52,628 KB
testcase_04 AC 118 ms
53,844 KB
testcase_05 AC 102 ms
52,912 KB
testcase_06 AC 98 ms
52,820 KB
testcase_07 AC 115 ms
54,144 KB
testcase_08 AC 115 ms
54,100 KB
testcase_09 WA -
testcase_10 AC 113 ms
54,088 KB
testcase_11 AC 114 ms
54,348 KB
testcase_12 AC 112 ms
53,948 KB
testcase_13 AC 112 ms
54,304 KB
testcase_14 WA -
testcase_15 AC 110 ms
54,016 KB
testcase_16 AC 113 ms
53,952 KB
testcase_17 AC 114 ms
54,028 KB
testcase_18 AC 113 ms
54,056 KB
testcase_19 AC 101 ms
53,044 KB
testcase_20 AC 111 ms
54,060 KB
testcase_21 AC 112 ms
53,776 KB
testcase_22 AC 115 ms
53,844 KB
testcase_23 AC 117 ms
53,880 KB
testcase_24 AC 115 ms
54,032 KB
testcase_25 AC 113 ms
53,904 KB
testcase_26 AC 115 ms
53,976 KB
testcase_27 AC 114 ms
54,064 KB
testcase_28 AC 103 ms
52,680 KB
testcase_29 AC 97 ms
52,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Yuki85{
	public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		int n,m,c;
		n = sc.nextInt();
		m = sc.nextInt();
		c = sc.nextInt();
		if((n % 2 == 0 || m % 2 == 0 )&& n != 1 && m != 1){
			System.out.println("YES");
		}else{
			System.out.println("NO");
		}
	}
}
0