結果

問題 No.85 TVザッピング(1)
ユーザー ぴろずぴろず
提出日時 2014-12-04 23:48:23
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 456 bytes
コンパイル時間 2,044 ms
コンパイル使用メモリ 74,440 KB
実行使用メモリ 41,328 KB
最終ジャッジ日時 2024-06-11 15:28:30
合計ジャッジ時間 6,779 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,236 KB
testcase_01 AC 126 ms
41,244 KB
testcase_02 AC 116 ms
40,180 KB
testcase_03 AC 108 ms
40,144 KB
testcase_04 AC 114 ms
41,244 KB
testcase_05 AC 131 ms
41,280 KB
testcase_06 AC 122 ms
41,128 KB
testcase_07 AC 103 ms
39,976 KB
testcase_08 AC 112 ms
39,888 KB
testcase_09 WA -
testcase_10 AC 113 ms
40,132 KB
testcase_11 AC 116 ms
41,116 KB
testcase_12 AC 117 ms
41,208 KB
testcase_13 AC 113 ms
40,988 KB
testcase_14 WA -
testcase_15 AC 110 ms
40,144 KB
testcase_16 AC 121 ms
41,004 KB
testcase_17 AC 119 ms
41,316 KB
testcase_18 AC 121 ms
41,200 KB
testcase_19 AC 115 ms
41,008 KB
testcase_20 AC 116 ms
40,880 KB
testcase_21 AC 114 ms
41,192 KB
testcase_22 AC 115 ms
40,268 KB
testcase_23 AC 123 ms
40,784 KB
testcase_24 AC 116 ms
40,240 KB
testcase_25 AC 124 ms
41,148 KB
testcase_26 AC 130 ms
41,028 KB
testcase_27 AC 119 ms
39,992 KB
testcase_28 AC 131 ms
41,328 KB
testcase_29 AC 119 ms
39,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no085;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		int c = sc.nextInt();
		System.out.println(solve(n,m,c) ? "YES" : "NO");
	}

	public static boolean solve(int n,int m,int c) {
		if ((n*m)%2==1) {
			return false;
		}
		if (n == 1 || m == 1) {
			return false;
		}
		return true;
	}

}
0