結果

問題 No.8 N言っちゃダメゲーム
ユーザー hhgfhn1hhgfhn1
提出日時 2018-10-17 23:47:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 159 ms / 5,000 ms
コード長 491 bytes
コンパイル時間 1,934 ms
コンパイル使用メモリ 74,652 KB
実行使用メモリ 54,300 KB
最終ジャッジ日時 2024-10-12 18:58:17
合計ジャッジ時間 4,324 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
53,732 KB
testcase_01 AC 123 ms
53,864 KB
testcase_02 AC 125 ms
53,712 KB
testcase_03 AC 154 ms
54,048 KB
testcase_04 AC 159 ms
53,836 KB
testcase_05 AC 142 ms
54,104 KB
testcase_06 AC 147 ms
54,276 KB
testcase_07 AC 149 ms
54,300 KB
testcase_08 AC 145 ms
53,856 KB
testcase_09 AC 159 ms
53,980 KB
testcase_10 AC 147 ms
53,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	@SuppressWarnings("resource")
	public static void main(String args[]) {
		Scanner scanner = new Scanner(System.in);
		int p = scanner.nextInt();
		int n[]=new int[p];
		int k[]=new int[p];
		for(int i=0;i<p;i++){
			n[i]=scanner.nextInt();
			k[i]=scanner.nextInt();
		}
		for(int i=0;i<p;i++){
			int tarN=n[i]-1;
			int tarK=k[i]+1;
			if(tarN%tarK==0){
				System.out.println("Lose");
			}else{
				System.out.println("Win");
			}
		}
	}
}
0