結果
問題 | No.85 TVザッピング(1) |
ユーザー |
![]() |
提出日時 | 2016-08-21 16:09:39 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 190 bytes |
コンパイル時間 | 1,716 ms |
コンパイル使用メモリ | 164,364 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 22:26:00 |
合計ジャッジ時間 | 2,623 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 22 WA * 5 |
ソースコード
#include <bits/stdc++.h> int main() { int n; scanf("%d", &n); int m; scanf("%d", &m); int c; scanf("%d", &c); puts((n % 2 == 0 or m % 2 == 0) ? "YES" : "NO"); return 0; }