結果

問題 No.85 TVザッピング(1)
ユーザー beet
提出日時 2018-10-15 16:41:17
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 341 bytes
コンパイル時間 1,504 ms
コンパイル使用メモリ 165,720 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-12 18:33:43
合計ジャッジ時間 2,477 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22 WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using Int = long long;
template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}

//INSERT ABOVE HERE
signed main(){
  int n,m,c;
  cin>>n>>m>>c;
  cout<<((n*m)&1?"NO"s:"YES"s)<<endl;
  return 0;
}
0