結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | zimpha |
提出日時 | 2017-03-24 22:52:50 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 101 ms / 5,000 ms |
コード長 | 2,491 bytes |
コンパイル時間 | 2,331 ms |
コンパイル使用メモリ | 78,768 KB |
実行使用メモリ | 39,368 KB |
最終ジャッジ日時 | 2024-10-01 15:57:06 |
合計ジャッジ時間 | 4,402 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
37,256 KB |
testcase_01 | AC | 53 ms
37,116 KB |
testcase_02 | AC | 94 ms
39,164 KB |
testcase_03 | AC | 85 ms
38,464 KB |
testcase_04 | AC | 61 ms
37,260 KB |
testcase_05 | AC | 61 ms
37,304 KB |
testcase_06 | AC | 89 ms
38,912 KB |
testcase_07 | AC | 84 ms
38,968 KB |
testcase_08 | AC | 79 ms
37,804 KB |
testcase_09 | AC | 101 ms
39,368 KB |
testcase_10 | AC | 50 ms
37,196 KB |
testcase_11 | AC | 85 ms
38,960 KB |
testcase_12 | AC | 94 ms
38,836 KB |
testcase_13 | AC | 89 ms
39,344 KB |
testcase_14 | AC | 95 ms
39,008 KB |
testcase_15 | AC | 93 ms
39,124 KB |
testcase_16 | AC | 95 ms
39,196 KB |
ソースコード
import java.io.OutputStream; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.util.List; import java.util.StringTokenizer; import java.io.IOException; import java.io.BufferedReader; import java.io.InputStreamReader; import java.util.ArrayList; import java.io.InputStream; /** * Built using CHelper plug-in * Actual solution is at the top * * @author Chiaki.Hoshinomori */ public class Main { public static void main(String[] args) { InputStream inputStream = System.in; OutputStream outputStream = System.out; InputReader in = new InputReader(inputStream); PrintWriter out = new PrintWriter(outputStream); Task007 solver = new Task007(); solver.solve(1, in, out); out.close(); } static class Task007 { public void solve(int testNumber, InputReader in, PrintWriter out) { int n = in.nextInt(); boolean[] mark = new boolean[n + 1]; List<Integer> pl = new ArrayList<>(); for (int i = 2; i <= n; ++i) { if (!mark[i]) { pl.add(i); for (int j = i; j <= n; j += i) { mark[j] = true; } } } mark[0] = mark[1] = true; for (int i = 2; i <= n; ++i) { mark[i] = false; for (int p : pl) { if (p > i) break; if (!mark[i - p]) { mark[i] = true; break; } } } if (mark[n]) out.println("Win"); else out.println("Lose"); } } static class InputReader { public BufferedReader reader; public StringTokenizer tokenizer; public InputReader(InputStream stream) { reader = new BufferedReader(new InputStreamReader(stream), 32768); tokenizer = null; } public String next() { while (tokenizer == null || !tokenizer.hasMoreTokens()) { try { tokenizer = new StringTokenizer(reader.readLine()); } catch (IOException e) { throw new RuntimeException(e); } } return tokenizer.nextToken(); } public int nextInt() { return Integer.parseInt(next()); } } }