結果

問題 No.2415 偶数判定!Nafmoくん
ユーザー ryota2357
提出日時 2023-07-11 13:14:08
言語 C++17(clang)
(17.0.6 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 499 bytes
コンパイル時間 674 ms
コンパイル使用メモリ 119,808 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-13 03:45:30
合計ジャッジ時間 1,557 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cassert>
#include <string>
using namespace std;
using ull = unsigned long long;

void assert_binary(string& s) {
    for (auto c : s) {
        assert(c == '0' || c == '1');
    }
    assert(1 <= s.length() && s.length() <= 64);
}

int main() {
    string a, b;
    cin >> a >> b;
    assert_binary(a);
    assert_binary(b);
    if (a.back() == '1' && b.back() == '1') {
        cout << "Odd" << endl;
    } else {
        cout << "Even" << endl;
    }
    return 0;
}
0