結果

問題 No.8 N言っちゃダメゲーム
ユーザー 8130Tsk8130Tsk
提出日時 2015-07-30 21:59:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 164 ms / 5,000 ms
コード長 400 bytes
コンパイル時間 3,718 ms
コンパイル使用メモリ 75,124 KB
実行使用メモリ 41,784 KB
最終ジャッジ日時 2024-07-17 22:48:22
合計ジャッジ時間 6,205 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,216 KB
testcase_01 AC 132 ms
40,864 KB
testcase_02 AC 131 ms
41,112 KB
testcase_03 AC 157 ms
41,316 KB
testcase_04 AC 164 ms
41,300 KB
testcase_05 AC 164 ms
41,320 KB
testcase_06 AC 159 ms
41,260 KB
testcase_07 AC 155 ms
41,192 KB
testcase_08 AC 155 ms
41,784 KB
testcase_09 AC 155 ms
41,456 KB
testcase_10 AC 164 ms
41,208 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();
		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();
			
			if(n[i]%(k[i]+1) != 1){
				System.out.println("Win");
			}else{
				System.out.println("Lose");
			}
			
		}
	}

}
0