結果

問題 No.8 N言っちゃダメゲーム
ユーザー shinshin
提出日時 2022-05-17 17:56:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 5,000 ms
コード長 854 bytes
コンパイル時間 3,547 ms
コンパイル使用メモリ 75,680 KB
実行使用メモリ 37,172 KB
最終ジャッジ日時 2024-09-15 12:48:16
合計ジャッジ時間 5,033 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,884 KB
testcase_01 AC 49 ms
36,544 KB
testcase_02 AC 50 ms
36,872 KB
testcase_03 AC 54 ms
36,540 KB
testcase_04 AC 55 ms
36,548 KB
testcase_05 AC 54 ms
36,844 KB
testcase_06 AC 56 ms
37,172 KB
testcase_07 AC 56 ms
36,628 KB
testcase_08 AC 55 ms
37,096 KB
testcase_09 AC 56 ms
36,540 KB
testcase_10 AC 55 ms
36,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;

public class No8 {

	public static void main(String[] args) throws IOException{
		//N言っちゃダメゲーム
		String[] text = readStr();
		int P = Integer.parseInt(text[0]) , N , K;
		
		for(int i = 0;i < P;i++) {
			N = Integer.parseInt(text[i+1].split(" ")[0]);
			K = Integer.parseInt(text[i+1].split(" ")[1]);
			System.out.println((N - 1) % (K + 1) != 0 ? "Win" : "Lose");
		}

	}
	
	
	public static String[] readStr() throws IOException{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		ArrayList<String> list = new ArrayList<>();

		do {
			list.add(br.readLine());
		}while(br.ready());

		br.close();

		String[] text = new String[list.size()];
		list.toArray(text);

		return text;

	}

}
0