結果
| 問題 | No.683 Two Operations No.3 |
| コンテスト | |
| ユーザー |
Hdz06052373
|
| 提出日時 | 2018-05-17 22:21:27 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 550 bytes |
| コンパイル時間 | 635 ms |
| コンパイル使用メモリ | 63,104 KB |
| 実行使用メモリ | 817,792 KB |
| 最終ジャッジ日時 | 2024-06-28 13:35:13 |
| 合計ジャッジ時間 | 2,515 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 1 MLE * 1 -- * 14 |
コンパイルメッセージ
main.cpp: In function 'bool search(int, int)':
main.cpp:32:1: warning: control reaches end of non-void function [-Wreturn-type]
32 | }
| ^
ソースコード
#include <iostream>
#include <cstdio>
using namespace std;
bool search(int a, int b) ;
int main() {
int a, b;
scanf("%d %d", &a, &b);
if(search(a, b))
cout << "YES" << endl;
else
cout << "NO" << endl;
return 0;
}
bool search(int a, int b) {
if((a == 0) || (b == 0))
return true;
else if((a%2 != 0) && (b%2 != 0))
return false;
else if((a%2 == 0) && (b%2 == 0))
if(search(a, b))
return true;
else
if(search(a,b))
return true;
}
Hdz06052373