結果

問題 No.8 N言っちゃダメゲーム
ユーザー 37zigen37zigen
提出日時 2016-03-09 17:32:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 157 ms / 5,000 ms
コード長 322 bytes
コンパイル時間 2,418 ms
コンパイル使用メモリ 77,532 KB
実行使用メモリ 54,544 KB
最終ジャッジ日時 2024-09-24 16:58:42
合計ジャッジ時間 4,005 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
53,908 KB
testcase_01 AC 121 ms
54,088 KB
testcase_02 AC 127 ms
54,112 KB
testcase_03 AC 150 ms
53,992 KB
testcase_04 AC 146 ms
54,020 KB
testcase_05 AC 141 ms
54,164 KB
testcase_06 AC 141 ms
54,544 KB
testcase_07 AC 157 ms
54,288 KB
testcase_08 AC 150 ms
54,220 KB
testcase_09 AC 153 ms
54,140 KB
testcase_10 AC 142 ms
53,976 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();
		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