結果

問題 No.8 N言っちゃダメゲーム
ユーザー mitsuomitsuo
提出日時 2016-05-07 20:28:58
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 819 bytes
コンパイル時間 1,979 ms
コンパイル使用メモリ 79,552 KB
実行使用メモリ 41,632 KB
最終ジャッジ日時 2024-10-05 10:23:30
合計ジャッジ時間 4,012 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
40,020 KB
testcase_01 AC 111 ms
41,040 KB
testcase_02 AC 104 ms
40,672 KB
testcase_03 AC 118 ms
41,344 KB
testcase_04 AC 112 ms
41,632 KB
testcase_05 AC 117 ms
41,188 KB
testcase_06 WA -
testcase_07 AC 119 ms
41,280 KB
testcase_08 AC 118 ms
41,280 KB
testcase_09 AC 119 ms
41,356 KB
testcase_10 AC 116 ms
41,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package jp.fedom.challange.yuki.l2.q8;

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		List<String> input = new ArrayList<>();
		while (sc.hasNext()) {
			input.add(sc.nextLine());
		}

		System.out.println(solve(input));

		sc.close();
	}

	public static String solve(List<String> in) {
		int P = Integer.valueOf(in.get(0));
		StringBuilder sb = new StringBuilder();
		in.remove(0);

		for (String s : in) {
			int n = Integer.valueOf(s.split(" ")[0]);
			int k = Integer.valueOf(s.split(" ")[1]);
			if ((n - 1) % (k + 1) == 1 || (n - 1) % (k + 1) == 0) {
				sb.append("Lose");
			} else {
				sb.append("Win");
			}
			sb.append("\r\n");
		}

		return sb.toString().trim();

	}
}
0