結果

問題 No.8 N言っちゃダメゲーム
ユーザー kou6839kou6839
提出日時 2014-11-09 12:49:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 5,000 ms
コード長 504 bytes
コンパイル時間 1,927 ms
コンパイル使用メモリ 74,292 KB
実行使用メモリ 42,228 KB
最終ジャッジ日時 2024-06-10 01:51:37
合計ジャッジ時間 3,968 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,060 KB
testcase_01 AC 110 ms
41,336 KB
testcase_02 AC 112 ms
41,600 KB
testcase_03 AC 136 ms
41,968 KB
testcase_04 AC 136 ms
42,228 KB
testcase_05 AC 146 ms
41,576 KB
testcase_06 AC 136 ms
41,732 KB
testcase_07 AC 134 ms
41,604 KB
testcase_08 AC 130 ms
42,068 KB
testcase_09 AC 130 ms
41,592 KB
testcase_10 AC 140 ms
42,008 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