結果

問題 No.8 N言っちゃダメゲーム
ユーザー soujikisoujiki
提出日時 2015-04-24 18:25:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 165 ms / 5,000 ms
コード長 479 bytes
コンパイル時間 3,411 ms
コンパイル使用メモリ 74,380 KB
実行使用メモリ 41,832 KB
最終ジャッジ日時 2024-07-05 01:00:13
合計ジャッジ時間 5,787 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,584 KB
testcase_01 AC 122 ms
41,536 KB
testcase_02 AC 126 ms
41,472 KB
testcase_03 AC 147 ms
41,668 KB
testcase_04 AC 148 ms
41,556 KB
testcase_05 AC 150 ms
41,636 KB
testcase_06 AC 145 ms
41,664 KB
testcase_07 AC 152 ms
41,832 KB
testcase_08 AC 155 ms
41,556 KB
testcase_09 AC 165 ms
41,680 KB
testcase_10 AC 159 ms
41,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Yukicoder_8{
	public static void main(String[] args){
		Scanner stdIn = new Scanner(System.in);
		int P = stdIn.nextInt();
		int[] N = new int[P];
		int[] K = new int[P];
		for(int i=0;i<P;i++){
			N[i] = stdIn.nextInt();
			K[i] = stdIn.nextInt();

			if(N[i]<=K[i]+1){
				System.out.println("Win");
			}
			else{
				if(N[i]%(K[i]+1)==1){
					System.out.println("Lose");
				}
				else{
					System.out.println("Win");
				}
			}
		}


	}
}
0