結果

問題 No.1113 二つの整数 / Two Integers
ユーザー kaerufrogekokaerufrogeko
提出日時 2020-07-17 22:37:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 518 bytes
コンパイル時間 1,783 ms
コンパイル使用メモリ 185,484 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-07 09:51:44
合計ジャッジ時間 2,598 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 2 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 1 ms
5,376 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

//debug
#define _GLIBCXX_DEBUG
//include
#include <bits/stdc++.h>
//using
using namespace std;
using ll = long long;
//define
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define all(v) v.begin(), v.end()
#define inf 1e9
//function
void solve()
{
    ll a, b;
    cin >> a >> b;
    if (a < b)
        swap(a, b);
    ll r = a % b;
    if (r % 2 == 0)
    {
        cout << "Even" << endl;
    }
    else
    {
        cout << "Odd" << endl;
    }
    return;
}
//main
int main()
{
    solve();
    return 0;
}
0