結果

問題 No.85 TVザッピング(1)
ユーザー _matumo_
提出日時 2019-10-25 09:29:11
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 32 ms / 5,000 ms
コード長 165 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-07-19 05:13:37
合計ジャッジ時間 2,250 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

def fx(N,M):
    if N*M==2:  return 0
    if N<2:     return 1
    if M<2:     return 1
    return N&M&1

N,M,C=map(int,input().split())
print(["YES","NO"][fx(N,M)])
0