結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
39,936 KB
testcase_01 AC 114 ms
40,948 KB
testcase_02 AC 127 ms
41,260 KB
testcase_03 AC 106 ms
40,264 KB
testcase_04 AC 103 ms
40,072 KB
testcase_05 AC 109 ms
39,936 KB
testcase_06 AC 116 ms
41,048 KB
testcase_07 AC 106 ms
40,200 KB
testcase_08 AC 101 ms
40,092 KB
testcase_09 AC 104 ms
40,504 KB
testcase_10 AC 102 ms
40,064 KB
testcase_11 AC 123 ms
41,188 KB
testcase_12 AC 119 ms
41,256 KB
testcase_13 AC 115 ms
41,400 KB
testcase_14 AC 107 ms
40,312 KB
testcase_15 AC 120 ms
39,980 KB
testcase_16 AC 113 ms
40,664 KB
testcase_17 AC 103 ms
40,112 KB
testcase_18 AC 117 ms
41,172 KB
testcase_19 AC 103 ms
40,312 KB
testcase_20 AC 106 ms
39,936 KB
testcase_21 AC 118 ms
41,152 KB
testcase_22 AC 121 ms
41,208 KB
testcase_23 AC 118 ms
40,960 KB
testcase_24 AC 105 ms
40,156 KB
testcase_25 AC 113 ms
40,364 KB
testcase_26 AC 117 ms
41,356 KB
testcase_27 AC 114 ms
40,960 KB
testcase_28 AC 105 ms
40,312 KB
testcase_29 AC 107 ms
40,720 KB
testcase_30 AC 104 ms
40,048 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