[C++] AtCoder Beginner Contest 181 A번 Heavy Rotation
15 Nov 2020 | PSAtCoder Beginner Contest 181 A번 Heavy Rotation
문제
https://atcoder.jp/contests/abc181/tasks/abc181_a
풀이
일본의 모 아이돌의 노래와 동일한 제목이다.
문제는 그냥 까만옷과 하얀옷을 번갈아 입을 때 N일 뒤에는 무슨옷을 입을 지 선택하는 문제
코드
#pragma warning(disable : 4996)
#include <bits/stdc++.h>
#define all(x) (x).begin(), (x).end()
using namespace std;
typedef long long ll;
typedef long double ld;
typedef vector<ll> vll;
typedef pair<ll, ll> pll;
typedef pair<ld, ld> pld;
typedef tuple<ll, ll, ll> tl3;
#define FOR(a, b, c) for (int(a) = (b); (a) < (c); ++(a))
#define FORN(a, b, c) for (int(a) = (b); (a) <= (c); ++(a))
#define rep(i, n) FOR(i, 0, n)
#define repn(i, n) FORN(i, 1, n)
#define tc(t) while (t--)
// https://atcoder.jp/contests/abc181/tasks/abc181_a
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
ll n;
cin >> n;
if(n&1) cout << "Black";
else cout << "White";
return 0;
}