結果

問題 No.8 N言っちゃダメゲーム
ユーザー shinwisteriashinwisteria
提出日時 2017-03-30 17:56:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 443 bytes
コンパイル時間 2,795 ms
コンパイル使用メモリ 75,868 KB
実行使用メモリ 41,996 KB
最終ジャッジ日時 2024-07-07 03:02:54
合計ジャッジ時間 4,932 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,452 KB
testcase_01 AC 113 ms
41,464 KB
testcase_02 AC 114 ms
41,484 KB
testcase_03 AC 140 ms
41,716 KB
testcase_04 AC 132 ms
41,764 KB
testcase_05 AC 131 ms
41,752 KB
testcase_06 AC 139 ms
41,996 KB
testcase_07 AC 135 ms
41,500 KB
testcase_08 AC 140 ms
41,904 KB
testcase_09 AC 131 ms
41,484 KB
testcase_10 AC 127 ms
41,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No21game {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int P = s.nextInt();
		int[][] nk = new int[P][2];
		for(int i = 0;i < P;i++){
			nk[i][0] = s.nextInt();
			nk[i][1] = s.nextInt();
		}
		s.close();

		for(int i =0; i < P;i++){
			if((nk[i][0] - 1) % (nk[i][1]+1) == 0){
				System.out.println("Lose");
			}else{
				System.out.println("Win");
			}
		}
	}

}
0