結果

問題 No.2415 偶数判定!Nafmoくん
ユーザー yorry2101yorry2101
提出日時 2023-09-15 22:57:13
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 288 bytes
コンパイル時間 796 ms
コンパイル使用メモリ 70,412 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-03 00:16:28
合計ジャッジ時間 1,728 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <bitset>
using namespace std;
int main(void){
    string s, t;
    cin >> s >> t;
    bitset<70> a(s), b(t);
    unsigned long long c = a.to_ullong() * b.to_ullong();
    if (c%2 == 0) {
        cout << "Even" << endl;
    }
    else cout << "Odd" << endl;
}
0