結果
問題 | No.8 N言っちゃダメゲーム |
ユーザー | mitsuo |
提出日時 | 2016-05-07 21:06:32 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 131 ms / 5,000 ms |
コード長 | 869 bytes |
コンパイル時間 | 1,899 ms |
コンパイル使用メモリ | 79,020 KB |
実行使用メモリ | 54,128 KB |
最終ジャッジ日時 | 2024-10-05 10:26:46 |
合計ジャッジ時間 | 3,957 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 113 ms
53,688 KB |
testcase_01 | AC | 113 ms
53,316 KB |
testcase_02 | AC | 110 ms
53,736 KB |
testcase_03 | AC | 119 ms
54,036 KB |
testcase_04 | AC | 121 ms
54,068 KB |
testcase_05 | AC | 131 ms
54,128 KB |
testcase_06 | AC | 125 ms
54,000 KB |
testcase_07 | AC | 117 ms
53,900 KB |
testcase_08 | AC | 120 ms
53,908 KB |
testcase_09 | AC | 121 ms
54,004 KB |
testcase_10 | AC | 121 ms
53,944 KB |
ソースコード
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 <= k) { sb.append("Win"); } else { int m = (n - 1) % (k + 1); if (m == 0) { sb.append("Lose"); } else { sb.append("Win"); } } sb.append("\r\n"); } return sb.toString().trim(); } }