結果
| 問題 | No.683 Two Operations No.3 |
| コンテスト | |
| ユーザー |
Hdz06052373
|
| 提出日時 | 2018-05-17 22:11:24 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 622 bytes |
| コンパイル時間 | 398 ms |
| コンパイル使用メモリ | 54,620 KB |
| 実行使用メモリ | 817,664 KB |
| 最終ジャッジ日時 | 2024-06-28 13:34:59 |
| 合計ジャッジ時間 | 2,428 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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>
using namespace std;
bool search(int a, int b) ;
void swap(int &a, int &b) ;
int main() {
int a, b;
cin >> 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;
}
void swap(int &a, int &b) {
int tmp = a;
a = b;
b = tmp;
}
Hdz06052373