結果

問題 No.8 N言っちゃダメゲーム
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-18 14:47:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 171 ms / 5,000 ms
コード長 341 bytes
コンパイル時間 3,382 ms
コンパイル使用メモリ 74,992 KB
実行使用メモリ 54,504 KB
最終ジャッジ日時 2024-06-24 12:44:47
合計ジャッジ時間 5,800 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,324 KB
testcase_01 AC 135 ms
54,280 KB
testcase_02 AC 135 ms
54,056 KB
testcase_03 AC 162 ms
54,420 KB
testcase_04 AC 163 ms
54,340 KB
testcase_05 AC 161 ms
54,132 KB
testcase_06 AC 159 ms
54,440 KB
testcase_07 AC 156 ms
54,260 KB
testcase_08 AC 171 ms
54,100 KB
testcase_09 AC 160 ms
54,376 KB
testcase_10 AC 157 ms
54,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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