結果

問題 No.8 N言っちゃダメゲーム
ユーザー fal_rndfal_rnd
提出日時 2017-04-03 18:04:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 166 ms / 5,000 ms
コード長 307 bytes
コンパイル時間 2,446 ms
コンパイル使用メモリ 74,376 KB
実行使用メモリ 41,780 KB
最終ジャッジ日時 2024-07-08 03:23:00
合計ジャッジ時間 5,022 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,228 KB
testcase_01 AC 133 ms
41,156 KB
testcase_02 AC 134 ms
41,744 KB
testcase_03 AC 160 ms
41,544 KB
testcase_04 AC 160 ms
41,420 KB
testcase_05 AC 157 ms
41,620 KB
testcase_06 AC 159 ms
41,560 KB
testcase_07 AC 166 ms
41,780 KB
testcase_08 AC 157 ms
41,696 KB
testcase_09 AC 162 ms
41,588 KB
testcase_10 AC 159 ms
41,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{

	static final Scanner s=new Scanner(System.in);

	public static void main(String args[]){
		for(int p=s.nextInt();p>0;p--) {
			int n=s.nextInt(),k=s.nextInt();
			//System.out.println((n-1)%(k+1));
			System.out.println((n-1)%(k+1)!=0?"Win":"Lose");
		}
	}
}
0