結果

問題 No.524 コインゲーム
ユーザー GrenacheGrenache
提出日時 2017-06-02 22:56:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 1,000 ms
コード長 951 bytes
コンパイル時間 4,146 ms
コンパイル使用メモリ 75,260 KB
実行使用メモリ 54,656 KB
最終ジャッジ日時 2024-10-02 10:22:21
合計ジャッジ時間 9,258 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,116 KB
testcase_01 AC 133 ms
54,152 KB
testcase_02 AC 132 ms
54,064 KB
testcase_03 AC 135 ms
54,456 KB
testcase_04 AC 134 ms
54,012 KB
testcase_05 AC 137 ms
54,340 KB
testcase_06 AC 135 ms
54,472 KB
testcase_07 AC 135 ms
54,196 KB
testcase_08 AC 134 ms
54,180 KB
testcase_09 AC 133 ms
54,516 KB
testcase_10 AC 133 ms
54,348 KB
testcase_11 AC 132 ms
54,120 KB
testcase_12 AC 131 ms
54,128 KB
testcase_13 AC 134 ms
54,300 KB
testcase_14 AC 134 ms
54,108 KB
testcase_15 AC 134 ms
54,404 KB
testcase_16 AC 133 ms
54,184 KB
testcase_17 AC 132 ms
54,356 KB
testcase_18 AC 133 ms
54,472 KB
testcase_19 AC 134 ms
54,088 KB
testcase_20 AC 134 ms
53,956 KB
testcase_21 AC 135 ms
54,428 KB
testcase_22 AC 135 ms
54,656 KB
testcase_23 AC 142 ms
54,188 KB
testcase_24 AC 135 ms
54,352 KB
testcase_25 AC 135 ms
54,208 KB
testcase_26 AC 134 ms
54,020 KB
testcase_27 AC 133 ms
53,996 KB
testcase_28 AC 137 ms
54,144 KB
testcase_29 AC 134 ms
54,224 KB
testcase_30 AC 134 ms
54,200 KB
testcase_31 AC 135 ms
54,184 KB
testcase_32 AC 134 ms
54,360 KB
testcase_33 AC 136 ms
54,260 KB
testcase_34 AC 135 ms
54,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder524 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		long n = sc.nextLong();

		long ret = 0;
		if (n < 1_000_000) {
//		if (n < 10) {
			for (int i = 1; i <= n; i++) {
				ret ^= i;
//				pr.printf("%d %d\n", i, ret);
			}
		} else {
			for (int i = 1; true; i++) {
				long tmp = (0x1L << i + 1) - 1;
				if (tmp >= n) {
					n -= (0x1L << i) - 1;
					if (n % 4 == 0) {
						ret = 0;
					} else {
						ret = 1;
					}
					break;
				}
			}
		}

		if (ret != 0) {
			pr.println("O");
		} else {
			pr.println("X");
		}
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0