結果

問題 No.8 N言っちゃダメゲーム
ユーザー hhgfhn1hhgfhn1
提出日時 2018-10-17 23:44:14
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 502 bytes
コンパイル時間 2,172 ms
コンパイル使用メモリ 74,264 KB
実行使用メモリ 41,804 KB
最終ジャッジ日時 2024-10-12 18:57:16
合計ジャッジ時間 4,370 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
40,828 KB
testcase_01 AC 127 ms
41,024 KB
testcase_02 AC 120 ms
39,784 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 159 ms
41,296 KB
testcase_06 AC 148 ms
41,380 KB
testcase_07 AC 147 ms
41,356 KB
testcase_08 AC 159 ms
41,508 KB
testcase_09 AC 137 ms
40,924 KB
testcase_10 AC 149 ms
41,304 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");
				break;
			}else{
				System.out.println("Win");
			}
		}
	}
}
0