結果

問題 No.153 石の山
ユーザー kou6839kou6839
提出日時 2015-03-28 00:04:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 661 bytes
コンパイル時間 2,350 ms
コンパイル使用メモリ 79,876 KB
実行使用メモリ 41,640 KB
最終ジャッジ日時 2024-10-14 14:34:04
合計ジャッジ時間 6,334 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
40,372 KB
testcase_01 AC 129 ms
41,396 KB
testcase_02 AC 124 ms
40,960 KB
testcase_03 AC 105 ms
39,956 KB
testcase_04 AC 116 ms
41,388 KB
testcase_05 AC 107 ms
40,072 KB
testcase_06 AC 112 ms
40,232 KB
testcase_07 AC 115 ms
41,188 KB
testcase_08 AC 115 ms
41,396 KB
testcase_09 AC 116 ms
41,156 KB
testcase_10 AC 119 ms
41,232 KB
testcase_11 AC 122 ms
41,032 KB
testcase_12 AC 134 ms
41,336 KB
testcase_13 AC 113 ms
40,312 KB
testcase_14 AC 116 ms
41,420 KB
testcase_15 AC 114 ms
41,424 KB
testcase_16 AC 114 ms
41,640 KB
testcase_17 AC 104 ms
40,072 KB
testcase_18 AC 104 ms
40,212 KB
testcase_19 AC 101 ms
39,908 KB
testcase_20 AC 104 ms
40,356 KB
testcase_21 AC 117 ms
41,324 KB
testcase_22 AC 104 ms
40,192 KB
testcase_23 AC 115 ms
41,304 KB
testcase_24 AC 105 ms
39,892 KB
testcase_25 AC 100 ms
39,860 KB
testcase_26 AC 109 ms
40,176 KB
testcase_27 AC 104 ms
40,072 KB
testcase_28 AC 117 ms
40,948 KB
testcase_29 AC 125 ms
41,168 KB
testcase_30 AC 126 ms
41,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.*;
public class Main {
	static int rec(int x){
		if(grandy[x]!=-1) return grandy[x];
		
		Set<Integer> set = new HashSet<>();
		set.add(rec(x/2)^rec((x+1)/2));
		if(x>=3){
			set.add(rec(x/3)^rec((x+1)/3)^rec((x+2)/3));
		}
		int res=0;
		while(set.contains(res)) res++;
		return grandy[x]=res;
		}
	static int[] grandy;
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		grandy = new int[101];
		Arrays.fill(grandy, -1);
		grandy[1]=0;
		for(int i=1;i<101;i++) grandy[i]=rec(i);
		if(grandy[sc.nextInt()]==0){
			System.out.println("B");
		}else{
			System.out.println("A");
		}
	}
}
0