結果

問題 No.8 N言っちゃダメゲーム
ユーザー core123core123
提出日時 2019-04-17 16:51:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 210 ms / 5,000 ms
コード長 1,169 bytes
コンパイル時間 2,358 ms
コンパイル使用メモリ 78,404 KB
実行使用メモリ 57,288 KB
最終ジャッジ日時 2024-09-22 08:36:10
合計ジャッジ時間 4,653 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,420 KB
testcase_01 AC 127 ms
54,428 KB
testcase_02 AC 126 ms
54,232 KB
testcase_03 AC 196 ms
56,872 KB
testcase_04 AC 210 ms
57,072 KB
testcase_05 AC 206 ms
56,876 KB
testcase_06 AC 179 ms
57,072 KB
testcase_07 AC 181 ms
57,136 KB
testcase_08 AC 185 ms
57,288 KB
testcase_09 AC 186 ms
57,120 KB
testcase_10 AC 187 ms
57,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.*;
import static java.lang.Math.*;
public class Main{
	public static void main(String... args){
		Scanner sc=new Scanner(System.in);
		int p=sc.nextInt();
		for(int pp=0;pp<p;pp++){
			int n=sc.nextInt();
			int k=sc.nextInt();
			int[] grundy=new int[n+1];
			grundy[n-1]=0;
			for(int i=n-2;i>=0;i--){
				grundy[i]=(n-1-i)%(k+1);
				
			}
			//put(Arrays.toString(grundy));
			if(grundy[0]>0){
				put("Win");
			}else{
				put("Lose");
			}
			
		}
		
	}
	public static class Pair{
		final int x,y;
		Pair(int x,int y){
			this.x=x;
			this.y=y;
		}
		@Override
		public String toString(){
			return String.format("Pair(%d,%d)",x,y);
		}
	}
	public static void print(Object object){
        System.out.print(object);
    }
    public static void put(Object object) {
        System.out.println(object);
    }
    public static void put(){
        System.out.println();
    }
 
    public static void print(String format,Object... args){
        System.out.print(String.format(format,args));
    }
    public static void put(String format,Object... args) {
        System.out.println(String.format(format,args));
    }
}
0