結果

問題 No.946 箱箱箱
ユーザー 37zigen37zigen
提出日時 2019-12-10 03:42:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 273 ms / 2,000 ms
コード長 895 bytes
コンパイル時間 2,398 ms
コンパイル使用メモリ 77,420 KB
実行使用メモリ 58,816 KB
最終ジャッジ日時 2024-06-27 03:26:43
合計ジャッジ時間 16,354 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,116 KB
testcase_01 AC 136 ms
53,860 KB
testcase_02 AC 139 ms
54,008 KB
testcase_03 AC 246 ms
56,724 KB
testcase_04 AC 245 ms
56,820 KB
testcase_05 AC 134 ms
53,992 KB
testcase_06 AC 253 ms
56,892 KB
testcase_07 AC 256 ms
56,772 KB
testcase_08 AC 256 ms
56,920 KB
testcase_09 AC 264 ms
57,324 KB
testcase_10 AC 249 ms
56,680 KB
testcase_11 AC 139 ms
53,852 KB
testcase_12 AC 258 ms
57,492 KB
testcase_13 AC 265 ms
56,948 KB
testcase_14 AC 261 ms
56,824 KB
testcase_15 AC 248 ms
57,156 KB
testcase_16 AC 246 ms
57,224 KB
testcase_17 AC 246 ms
57,452 KB
testcase_18 AC 259 ms
56,924 KB
testcase_19 AC 271 ms
56,908 KB
testcase_20 AC 145 ms
53,828 KB
testcase_21 AC 263 ms
56,736 KB
testcase_22 AC 251 ms
57,004 KB
testcase_23 AC 252 ms
57,956 KB
testcase_24 AC 264 ms
56,884 KB
testcase_25 AC 244 ms
57,044 KB
testcase_26 AC 249 ms
56,800 KB
testcase_27 AC 250 ms
57,136 KB
testcase_28 AC 256 ms
56,992 KB
testcase_29 AC 265 ms
56,780 KB
testcase_30 AC 244 ms
56,928 KB
testcase_31 AC 273 ms
56,812 KB
testcase_32 AC 247 ms
57,200 KB
testcase_33 AC 247 ms
56,972 KB
testcase_34 AC 257 ms
56,676 KB
testcase_35 AC 260 ms
57,628 KB
testcase_36 AC 251 ms
56,968 KB
testcase_37 AC 251 ms
56,716 KB
testcase_38 AC 264 ms
57,716 KB
testcase_39 AC 249 ms
57,244 KB
testcase_40 AC 258 ms
56,828 KB
testcase_41 AC 250 ms
56,872 KB
testcase_42 AC 250 ms
57,012 KB
testcase_43 AC 250 ms
56,656 KB
testcase_44 AC 237 ms
56,680 KB
testcase_45 AC 252 ms
58,816 KB
testcase_46 AC 243 ms
56,888 KB
testcase_47 AC 133 ms
54,000 KB
testcase_48 AC 134 ms
54,044 KB
testcase_49 AC 134 ms
54,028 KB
testcase_50 AC 136 ms
54,100 KB
testcase_51 AC 138 ms
53,996 KB
testcase_52 AC 138 ms
54,064 KB
testcase_53 AC 141 ms
53,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
import java.io.*;
class Main
{

	public static void main(String[] args)
	{
		new Main().run();
	}

	void run(){
		Scanner sc=new Scanner(System.in);
		int N=sc.nextInt();
		long[] A=new long[N];
		int[] g=new int[N+1];
		int[] G=new int[N+1];
		Arrays.fill(G,-1);
		G[N]=0;
		for(int i=0;i<N;++i){
			A[i]=sc.nextLong();
		}
		int[] p=new int[N+2];
		Arrays.fill(p,-1);
		//G[i]:=A[i]...A[N-1]が残っているときのgrundy
		for(int i=N;i>=1;--i){
			g[i]^=G[i];
			for(int j=i;j<=N;++j){
				g[j]^=A[i-1];
				p[Math.min(g[j],N+1)]=i;
			}
			//G[i-1]を決定する。
			for(int j=0;j<=p.length;++j){
				if(p[j]!=i){
					G[i-1]=j;
					break;
				}
			}
		}
		if(G[0]!=0){
			System.out.println("Takahashi");
		}else{
			System.out.println("Takanashi");
		}
	}

	void tr(Object...objects){
		System.out.println(Arrays.deepToString(objects));
	}
}
0