結果

問題 No.153 石の山
ユーザー GrenacheGrenache
提出日時 2016-05-24 23:46:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 5,000 ms
コード長 1,097 bytes
コンパイル時間 3,856 ms
コンパイル使用メモリ 78,432 KB
実行使用メモリ 54,264 KB
最終ジャッジ日時 2024-10-14 14:41:20
合計ジャッジ時間 9,504 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
54,264 KB
testcase_01 AC 136 ms
54,152 KB
testcase_02 AC 141 ms
53,980 KB
testcase_03 AC 136 ms
54,096 KB
testcase_04 AC 140 ms
54,072 KB
testcase_05 AC 138 ms
53,864 KB
testcase_06 AC 139 ms
53,772 KB
testcase_07 AC 143 ms
53,940 KB
testcase_08 AC 141 ms
53,876 KB
testcase_09 AC 142 ms
54,132 KB
testcase_10 AC 141 ms
54,068 KB
testcase_11 AC 139 ms
53,904 KB
testcase_12 AC 140 ms
54,012 KB
testcase_13 AC 142 ms
54,148 KB
testcase_14 AC 140 ms
54,144 KB
testcase_15 AC 139 ms
54,044 KB
testcase_16 AC 141 ms
54,108 KB
testcase_17 AC 139 ms
53,988 KB
testcase_18 AC 138 ms
53,928 KB
testcase_19 AC 139 ms
54,076 KB
testcase_20 AC 139 ms
53,892 KB
testcase_21 AC 139 ms
53,772 KB
testcase_22 AC 139 ms
53,896 KB
testcase_23 AC 140 ms
54,208 KB
testcase_24 AC 144 ms
53,844 KB
testcase_25 AC 140 ms
53,900 KB
testcase_26 AC 141 ms
54,116 KB
testcase_27 AC 140 ms
54,188 KB
testcase_28 AC 140 ms
54,068 KB
testcase_29 AC 138 ms
53,904 KB
testcase_30 AC 140 ms
53,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main_yukicoder153_1 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();

        int[] grundy = new int[n + 1];
        for (int i = 2; i <= n; i++) {
        	Set<Integer> st = new HashSet<>();

        	int g;
        	if (i % 2 == 0) {
        		g = grundy[i / 2] ^ grundy[i / 2];
        	} else {
        		g = grundy[i / 2] ^ grundy[i / 2 + 1];
        	}
        	st.add(g);

        	if (i % 3 == 0) {
        		g = grundy[i / 3] ^ grundy[i / 3] ^ grundy[i / 3];
        	} else if (i % 3 == 1) {
        		g = grundy[i / 3] ^ grundy[i / 3] ^ grundy[i / 3 + 1];
        	} else {
        		g = grundy[i / 3] ^ grundy[i / 3 + 1] ^ grundy[i / 3 + 1];
        	}
        	st.add(g);

        	for (int j = 0; true; j++) {
        		if (!st.contains(j)) {
        			grundy[i] = j;
        			break;
        		}
        	}
        }

        if (grundy[n] > 0) {
        	System.out.println("A");
        } else {
        	System.out.println("B");
        }

        sc.close();
    }
}
0