結果

問題 No.1119 Division 3
ユーザー e869120
提出日時 2020-07-02 15:23:25
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 200 bytes
コンパイル時間 451 ms
コンパイル使用メモリ 62,888 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-17 05:13:42
合計ジャッジ時間 1,019 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2
other WA * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

int main() {
	int X, Y, Z;
	cin >> X >> Y >> Z;
	if (X % 2 == 1 && Y % 2 == 1 && Z % 2 == 1) cout << "Odd" << endl;
	else cout << "Even" << endl;
	return 0;
}
0