結果

問題 No.524 コインゲーム
ユーザー こんのゆうたこんのゆうた
提出日時 2023-05-06 13:56:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 1,318 bytes
コンパイル時間 1,554 ms
コンパイル使用メモリ 166,092 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-03 01:46:43
合計ジャッジ時間 2,792 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) rep2(i, 0, n)
#define rep2(i, j, n) for (ll i = (j); (i) < (n); ++(i))
#define pre(i,x) for(ll i=((ll)(x)-1);i>=0;i--)
#define all(x) (x).begin(),(x).end()
#define sz(x) (x).size()
#define pb push_back
#define fs first
#define sd second
#define vll vector<ll>
#define vvll vector<vector<ll>>
#define pll pair<ll, ll>
#define vpll vector<pair<ll, ll>>
#define mp make_pair
using namespace std;
using ll = long long;
using ull = unsigned long long;
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; }
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; }
ll gcd(ll a, ll b) { if (a % b == 0) { return b; } else { return gcd(b, a % b); } }//最大公約数
ll lcm(ll a, ll b) { return a * b / gcd(a, b); }//最小公倍数
bool comp(pll& f, pll& s) { return f.second < s.second; }//昇順に並び替える比較関数
const double PI = 3.141592653589793;
const int INF32 = 1 << 30, dx[4] = { 1,0,-1,0 }, dy[4] = { 0,1,0,-1 };
const ll INF = 1ll << 60;
const ll MOD = 998244353;//1000000007;

int main() {
	ll N; cin >> N;
	ll flag = 1;
	if (N == 3)flag = 0;
	else if (N > 3) {
		if ((N - 3) % 4 == 0)flag = 0;
	}
	if (flag)cout << 'O' << endl;
	else cout << "X" << endl;
	return 0;
}
0