結果

問題 No.85 TVザッピング(1)
ユーザー bluemegane
提出日時 2018-10-05 11:20:07
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 440 bytes
コンパイル時間 795 ms
コンパイル使用メモリ 102,272 KB
実行使用メモリ 17,920 KB
最終ジャッジ日時 2024-10-12 12:31:32
合計ジャッジ時間 2,394 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 19 WA * 8
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

public class Hello
{
    public static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = int.Parse(line[0]);
        var m = int.Parse(line[1]);
        Console.WriteLine(getAns(n, m) ? "YES" : "NO");
    }
    public static bool getAns(int n, int m)
    {
        if (n == 1 | m == 1) return true;
        if (n % 2 == 0 | m % 2 == 0) return true;
        return false;
    }
}
0