結果

問題 No.8 N言っちゃダメゲーム
ユーザー kanra661kanra661
提出日時 2014-12-16 17:07:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 166 ms / 5,000 ms
コード長 493 bytes
コンパイル時間 2,259 ms
コンパイル使用メモリ 74,436 KB
実行使用メモリ 41,956 KB
最終ジャッジ日時 2024-06-11 21:55:04
合計ジャッジ時間 4,574 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,424 KB
testcase_01 AC 128 ms
41,216 KB
testcase_02 AC 131 ms
41,516 KB
testcase_03 AC 155 ms
41,792 KB
testcase_04 AC 155 ms
41,956 KB
testcase_05 AC 166 ms
41,684 KB
testcase_06 AC 157 ms
41,904 KB
testcase_07 AC 159 ms
41,428 KB
testcase_08 AC 159 ms
41,776 KB
testcase_09 AC 159 ms
41,536 KB
testcase_10 AC 156 ms
41,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	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<n.length;i++){
			n[i] = sc.nextInt();
			k[i] = sc.nextInt();
			if(n[i] <= k[i]){
				System.out.println("Win");
			}else if(((n[i])%(k[i]+1)) == 1){
				System.out.println("Lose");
			}else{
				System.out.println("Win");
			}
		}
		sc.close();
	}

}
0