結果

問題 No.8 N言っちゃダメゲーム
ユーザー Amanita2016Amanita2016
提出日時 2017-09-11 19:06:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 165 ms / 5,000 ms
コード長 601 bytes
コンパイル時間 3,740 ms
コンパイル使用メモリ 76,424 KB
実行使用メモリ 41,772 KB
最終ジャッジ日時 2024-11-07 17:03:40
合計ジャッジ時間 6,147 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,412 KB
testcase_01 AC 133 ms
41,312 KB
testcase_02 AC 134 ms
41,256 KB
testcase_03 AC 165 ms
41,564 KB
testcase_04 AC 160 ms
41,588 KB
testcase_05 AC 165 ms
41,492 KB
testcase_06 AC 164 ms
41,772 KB
testcase_07 AC 150 ms
41,576 KB
testcase_08 AC 154 ms
41,708 KB
testcase_09 AC 156 ms
41,568 KB
testcase_10 AC 149 ms
41,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class StickUpGame {
	public static void main(String[] args){
		@SuppressWarnings("resource")
		Scanner s = new Scanner(System.in);
		int game  = s.nextInt();
		int stick[] = new int[game];
		int maxNum[] = new int[game];
		for(int i = 0 ; i < game ; i++){
			stick[i] = s.nextInt();
			maxNum[i] = s.nextInt();
		}
		for(int i = 0 ; i < game ; i++){
			int n = stick[i];
			int k = maxNum[i];
			if((n <= k) || ((n%(k+1)) != 1)){
				System.out.println("Win");
			}else{
				System.out.println("Lose");
			}
		}
		
	}
}
0