結果

問題 No.85 TVザッピング(1)
コンテスト
ユーザー Akijin_007
提出日時 2022-10-14 18:29:31
言語 PyPy3
(7.3.17)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
WA  
実行時間 -
コード長 238 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 230 ms
コンパイル使用メモリ 85,768 KB
実行使用メモリ 54,344 KB
最終ジャッジ日時 2026-03-13 05:44:35
合計ジャッジ時間 2,119 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge1_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 27
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

N, M, C = map(int, input().split())

if min(N, M) == 1:
    print("No")
else:
    if (N % 2) * (M % 2) == 1:
        print("No")
    else:
        print("Yes")



0