結果
問題 | No.85 TVザッピング(1) |
ユーザー |
![]() |
提出日時 | 2015-03-03 20:40:40 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 5,000 ms |
コード長 | 410 bytes |
コンパイル時間 | 208 ms |
コンパイル使用メモリ | 33,508 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-04 17:21:18 |
合計ジャッジ時間 | 1,079 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 27 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:8:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 8 | scanf("%d %d %d", &N, &M, &C); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <cstdio>#include <algorithm>// ナニソレイミワカンナイint main(){int N, M, C;scanf("%d %d %d", &N, &M, &C);if(std::min(N, M) == 1){if(std::max(N, M) == 2){puts("YES");}else{puts("NO");}}else{if(N % 2 == 0 || M % 2 == 0){puts("YES");}else{puts("NO");}}}