結果

提出番号 7
提出者 olphe
言語 C++
提出日時 2017-05-20 23:50:44
問題名 (1)Odd&Even
結果 AC
点数 100%

テストケース

テストケース 結果 得点 実行時間 メモリ使用量
1 AC 100% 1ms 7520KB
2 AC 100% 2ms 7664KB
3 AC 100% 1ms 7776KB

ソースコード

#include "iostream"
#include "climits"
#include "list"
#include "queue"
#include "stack"
#include "set"
#include "functional"
#include "algorithm"
#include "math.h"
#include "utility"
#include "string"
#include "map"
#include "unordered_map"
#include "iomanip"
#include "random"

using namespace std;
const long long int MOD = 1000000007;

int H, W;
string s[100];
int N;

int main() {
	ios::sync_with_stdio(false);
	cin >> N;
	if (N % 2)cout << "Odd\n";
	else cout << "Even\n";

	return 0;
}