結果

問題 No.524 コインゲーム
ユーザー toyontoyon
提出日時 2020-07-05 00:57:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 917 bytes
コンパイル時間 1,681 ms
コンパイル使用メモリ 167,028 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-19 22:07:57
合計ジャッジ時間 3,287 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define sz(x) int(x.size())
using namespace std;
typedef long long ll;
typedef pair<int, int> P;

const ll INF = 1LL << 60;

ll N;

int main() {
    cin >> N;
    N++;

    // xor の問題となった
    ll ans = 0;

    // for (int i = 0; i < 50; i++) {
    for (int i = 0; i < 3; i++) {
        // 周期を求める
        ll interval = 1LL << (i + 1);
        ll tmp = N / interval;
        ll cnt = tmp * (interval / 2);

        // はみ出た分
        if (N % interval != 0) {
            cnt += max(0LL, N % interval - interval / 2);
        }

        // 奇数なら足しこむ
        if (cnt % 2 == 1) {
            ans += 1LL << i;
        }
        // cout << "i: " << i << " ans: " << ans << " cnt: " << cnt << endl;
    }

    if (ans == 0) {
        cout << "X" << endl;
    } else {
        cout << "O" << endl;
    }
}
0