結果

問題 No.85 TVザッピング(1)
ユーザー kano_townkano_town
提出日時 2014-12-07 18:17:28
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 318 bytes
コンパイル時間 3,350 ms
コンパイル使用メモリ 75,296 KB
実行使用メモリ 54,408 KB
最終ジャッジ日時 2024-06-11 16:03:42
合計ジャッジ時間 7,461 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
52,856 KB
testcase_01 AC 114 ms
53,860 KB
testcase_02 AC 111 ms
53,928 KB
testcase_03 AC 99 ms
52,800 KB
testcase_04 AC 111 ms
53,724 KB
testcase_05 AC 113 ms
53,928 KB
testcase_06 AC 104 ms
53,128 KB
testcase_07 AC 103 ms
52,936 KB
testcase_08 AC 118 ms
53,936 KB
testcase_09 WA -
testcase_10 AC 117 ms
54,212 KB
testcase_11 AC 114 ms
54,080 KB
testcase_12 AC 117 ms
54,128 KB
testcase_13 AC 122 ms
54,312 KB
testcase_14 WA -
testcase_15 AC 118 ms
54,116 KB
testcase_16 AC 121 ms
53,872 KB
testcase_17 AC 118 ms
53,796 KB
testcase_18 AC 129 ms
54,000 KB
testcase_19 AC 124 ms
53,820 KB
testcase_20 AC 126 ms
53,972 KB
testcase_21 AC 127 ms
53,964 KB
testcase_22 AC 122 ms
53,992 KB
testcase_23 AC 124 ms
54,080 KB
testcase_24 AC 106 ms
52,848 KB
testcase_25 AC 118 ms
53,984 KB
testcase_26 AC 116 ms
54,344 KB
testcase_27 AC 107 ms
53,372 KB
testcase_28 AC 114 ms
54,076 KB
testcase_29 AC 115 ms
54,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukicoder85 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt(), m = sc.nextInt();
		sc.next();
		if ((n * m) % 2 == 0 && n > 1 && m > 1)
			System.out.println("YES");
		else
			System.out.println("NO");
	}
}
0