結果

問題 No.361 門松ゲーム2
ユーザー 37zigen37zigen
提出日時 2016-05-28 11:42:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 741 bytes
コンパイル時間 2,042 ms
コンパイル使用メモリ 74,868 KB
実行使用メモリ 41,632 KB
最終ジャッジ日時 2024-10-07 17:19:07
合計ジャッジ時間 6,512 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,156 KB
testcase_01 AC 114 ms
41,400 KB
testcase_02 AC 123 ms
41,404 KB
testcase_03 AC 121 ms
41,444 KB
testcase_04 AC 123 ms
41,280 KB
testcase_05 AC 125 ms
41,428 KB
testcase_06 AC 118 ms
41,360 KB
testcase_07 AC 120 ms
41,312 KB
testcase_08 AC 106 ms
40,332 KB
testcase_09 AC 121 ms
41,520 KB
testcase_10 AC 123 ms
41,588 KB
testcase_11 AC 120 ms
41,408 KB
testcase_12 AC 107 ms
39,888 KB
testcase_13 WA -
testcase_14 AC 117 ms
41,152 KB
testcase_15 AC 116 ms
41,176 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 129 ms
41,444 KB
testcase_20 AC 119 ms
40,928 KB
testcase_21 AC 126 ms
41,560 KB
testcase_22 AC 123 ms
41,420 KB
testcase_23 AC 140 ms
41,632 KB
testcase_24 WA -
testcase_25 AC 127 ms
41,136 KB
testcase_26 WA -
testcase_27 AC 134 ms
41,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.util.Arrays;
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();
		boolean[] g=new boolean[L+1];
		//g[i]=長さiの竹のみがあるとき、勝つことができるか。

		for(int len=1;len<=L;len++){
			out:for(int i=1;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){
						if(!(g[i]^g[j]^g[k])){
							g[len]=true;
							break out;
						}
					}
				}
			}
		}
		System.out.println(g[L]?"kado":"matsu");
	}
	void tr(Object...o){
		System.out.println(Arrays.deepToString(o));
	}
}
0