結果

問題 No.85 TVザッピング(1)
ユーザー tkr182
提出日時 2018-10-09 07:39:10
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 74 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 12,160 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-10-12 16:16:22
合計ジャッジ時間 1,866 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 17 WA * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,c=map(int,input().split())
print("YES" if n%2!=1 and m%2!=1 else "NO")
0