結果

問題 No.153 石の山
ユーザー uafr_csuafr_cs
提出日時 2015-09-11 17:22:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 1,132 bytes
コンパイル時間 2,274 ms
コンパイル使用メモリ 79,056 KB
実行使用メモリ 41,644 KB
最終ジャッジ日時 2024-10-14 14:39:44
合計ジャッジ時間 6,750 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,120 KB
testcase_01 AC 115 ms
40,964 KB
testcase_02 AC 115 ms
40,916 KB
testcase_03 AC 104 ms
40,044 KB
testcase_04 AC 113 ms
41,100 KB
testcase_05 AC 115 ms
41,344 KB
testcase_06 AC 116 ms
40,888 KB
testcase_07 AC 123 ms
41,168 KB
testcase_08 AC 114 ms
41,100 KB
testcase_09 AC 108 ms
40,104 KB
testcase_10 AC 119 ms
41,136 KB
testcase_11 AC 117 ms
41,208 KB
testcase_12 AC 115 ms
40,932 KB
testcase_13 AC 119 ms
41,436 KB
testcase_14 AC 119 ms
41,168 KB
testcase_15 AC 106 ms
39,932 KB
testcase_16 AC 121 ms
41,220 KB
testcase_17 AC 122 ms
41,308 KB
testcase_18 AC 106 ms
40,076 KB
testcase_19 AC 119 ms
41,216 KB
testcase_20 AC 107 ms
40,164 KB
testcase_21 AC 104 ms
40,032 KB
testcase_22 AC 120 ms
41,644 KB
testcase_23 AC 122 ms
41,588 KB
testcase_24 AC 122 ms
41,304 KB
testcase_25 AC 118 ms
41,300 KB
testcase_26 AC 105 ms
40,004 KB
testcase_27 AC 111 ms
40,488 KB
testcase_28 AC 106 ms
40,264 KB
testcase_29 AC 117 ms
41,040 KB
testcase_30 AC 109 ms
40,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;
import java.util.TreeSet;

public class Main {

	public static int grundy(int n, int[] memo){
		if(memo[n] >= 0){ return memo[n]; }
		if(n == 1){ return memo[n] = 0; }
		
		TreeSet<Integer> set = new TreeSet<Integer>();
		
		if(n >= 2){
			set.add(grundy(n / 2, memo) ^ grundy(n / 2 + (n % 2), memo));
		}
		
		if(n >= 3){
			if(n % 3 == 0){
				set.add(grundy(n / 3, memo) ^ grundy(n / 3, memo) ^ grundy(n / 3, memo));
			}else if(n % 3 == 1){
				set.add(grundy(n / 3, memo) ^ grundy(n / 3, memo) ^ grundy(n / 3 + 1, memo));
			}else{
				set.add(grundy(n / 3, memo) ^ grundy(n / 3 + 1, memo) ^ grundy(n / 3 + 1, memo));
			}
		}
		
		for(int i = 0; ; i++){
			if(!set.contains(i)){
				return memo[n] = i;
			}
		}
	}
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		int[] memo = new int[N + 1];
		Arrays.fill(memo, -1);
		
		System.out.println(grundy(N, memo) == 0 ? "B" : "A");
		//System.out.println(Arrays.toString(memo));
	}

}
0