結果

問題 No.8 N言っちゃダメゲーム
ユーザー kou6839kou6839
提出日時 2014-11-09 12:49:22
言語 Java
(openjdk 23)
結果
AC  
実行時間 162 ms / 5,000 ms
コード長 504 bytes
コンパイル時間 2,209 ms
コンパイル使用メモリ 74,436 KB
実行使用メモリ 54,444 KB
最終ジャッジ日時 2024-12-31 08:48:21
合計ジャッジ時間 4,442 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,196 KB
testcase_01 AC 133 ms
54,028 KB
testcase_02 AC 132 ms
54,444 KB
testcase_03 AC 155 ms
54,096 KB
testcase_04 AC 162 ms
54,268 KB
testcase_05 AC 161 ms
54,420 KB
testcase_06 AC 162 ms
54,164 KB
testcase_07 AC 152 ms
54,100 KB
testcase_08 AC 150 ms
54,312 KB
testcase_09 AC 149 ms
54,292 KB
testcase_10 AC 152 ms
54,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int P =sc.nextInt();
		int[] N = new int[P];
		int[] K = new int[P];
		for(int i=0;i<P;i++){
			N[i]=sc.nextInt();
			K[i]=sc.nextInt();
		}
		for(int i=0;i<P;i++){
			int temp=N[i]-1;
			while(temp>0){
				temp-=K[i]+1;
			}
			temp+=K[i]+1;
			if(temp<=K[i]){
				System.out.println("Win");
			}else{
				System.out.println("Lose");
			}
		}
 	}
}	
0