結果

問題 No.524 コインゲーム
ユーザー ぴろずぴろず
提出日時 2017-06-02 22:57:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 153 ms / 1,000 ms
コード長 654 bytes
コンパイル時間 2,596 ms
コンパイル使用メモリ 74,664 KB
実行使用メモリ 54,364 KB
最終ジャッジ日時 2024-10-02 10:22:30
合計ジャッジ時間 8,770 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
53,896 KB
testcase_01 AC 136 ms
53,940 KB
testcase_02 AC 139 ms
53,952 KB
testcase_03 AC 137 ms
53,772 KB
testcase_04 AC 134 ms
53,652 KB
testcase_05 AC 138 ms
54,032 KB
testcase_06 AC 141 ms
53,960 KB
testcase_07 AC 138 ms
53,728 KB
testcase_08 AC 139 ms
53,872 KB
testcase_09 AC 137 ms
54,096 KB
testcase_10 AC 138 ms
53,992 KB
testcase_11 AC 138 ms
54,008 KB
testcase_12 AC 138 ms
53,656 KB
testcase_13 AC 139 ms
53,784 KB
testcase_14 AC 136 ms
54,020 KB
testcase_15 AC 137 ms
53,896 KB
testcase_16 AC 137 ms
54,028 KB
testcase_17 AC 143 ms
53,772 KB
testcase_18 AC 141 ms
53,964 KB
testcase_19 AC 138 ms
54,256 KB
testcase_20 AC 140 ms
54,016 KB
testcase_21 AC 137 ms
54,016 KB
testcase_22 AC 135 ms
54,048 KB
testcase_23 AC 140 ms
54,012 KB
testcase_24 AC 135 ms
54,324 KB
testcase_25 AC 138 ms
53,992 KB
testcase_26 AC 153 ms
54,364 KB
testcase_27 AC 136 ms
54,008 KB
testcase_28 AC 138 ms
54,136 KB
testcase_29 AC 139 ms
53,800 KB
testcase_30 AC 137 ms
53,728 KB
testcase_31 AC 141 ms
54,100 KB
testcase_32 AC 138 ms
53,996 KB
testcase_33 AC 139 ms
54,144 KB
testcase_34 AC 139 ms
54,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no524;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong();
		boolean zero = true;
		for(int i=0;i<=31;i++) {
			long cycle = (n+1) / (1L << (i+1));
			long reminder = (n+1) - cycle * (1L << (i+1));
			long sum = cycle * (1L << i) + Math.max(0, reminder - (1L << i));
			if (sum % 2 == 1) {
				zero = false;
				break;
			}
		}
		System.out.println(zero ? "X" : "O");
	}
	
	public static void test() {
		long sum = 0;
		for(long i=0;i<1000;i++) {
			sum ^= i;
			if (sum == 0) {
				System.out.println(Long.toBinaryString(i));
			}
		}
	}

}
0