結果

問題 No.361 門松ゲーム2
ユーザー 37zigen37zigen
提出日時 2016-05-29 18:16:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 341 ms / 2,000 ms
コード長 823 bytes
コンパイル時間 2,185 ms
コンパイル使用メモリ 78,900 KB
実行使用メモリ 58,088 KB
最終ジャッジ日時 2024-10-07 17:42:22
合計ジャッジ時間 8,171 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
53,960 KB
testcase_01 AC 122 ms
54,128 KB
testcase_02 AC 122 ms
54,132 KB
testcase_03 AC 121 ms
54,116 KB
testcase_04 AC 122 ms
54,140 KB
testcase_05 AC 122 ms
54,052 KB
testcase_06 AC 108 ms
52,888 KB
testcase_07 AC 120 ms
53,764 KB
testcase_08 AC 125 ms
53,980 KB
testcase_09 AC 147 ms
54,180 KB
testcase_10 AC 110 ms
52,972 KB
testcase_11 AC 123 ms
54,224 KB
testcase_12 AC 135 ms
53,996 KB
testcase_13 AC 142 ms
54,372 KB
testcase_14 AC 282 ms
57,104 KB
testcase_15 AC 152 ms
54,424 KB
testcase_16 AC 251 ms
57,096 KB
testcase_17 AC 214 ms
54,696 KB
testcase_18 AC 180 ms
54,292 KB
testcase_19 AC 210 ms
53,896 KB
testcase_20 AC 164 ms
54,504 KB
testcase_21 AC 238 ms
56,828 KB
testcase_22 AC 341 ms
58,088 KB
testcase_23 AC 197 ms
54,804 KB
testcase_24 AC 213 ms
54,720 KB
testcase_25 AC 195 ms
54,004 KB
testcase_26 AC 237 ms
54,744 KB
testcase_27 AC 259 ms
54,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.Scanner;
public class Main{
	public static void main(String[] args){
		new Main().solve();
	}
	void solve(){
		Scanner sc=new Scanner(System.in);
		int L=sc.nextInt();
		int D=sc.nextInt();
		int[] g=new int[L+1];
		//g[i]=長さiの竹のみがあるとき、勝つことができるか。
		for(int len=1;len<=L;len++){
			HashSet<Integer> hs=new HashSet<>();
			out:for(int i=1;3*i<len;i++){
				for(int j=i+1;i+2*j<len;j++){
					//k>j,len-i-j>j,len>i+2*j
					int k=len-i-j;
					if(k-i<=D){
						hs.add(g[i]^g[j]^g[k]);
					}
				}
			}
			for(int i=0;;i++){
				if(!hs.contains(i)){
					g[len]=i;
					break;
				}
			}
		}
		System.out.println(g[L]!=0?"kado":"matsu");
	}
	void tr(Object...o){
		System.out.println(Arrays.deepToString(o));
	}
}
0