結果

問題 No.7 プライムナンバーゲーム
ユーザー te-shte-sh
提出日時 2017-01-11 18:19:30
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 18 ms / 5,000 ms
コード長 825 bytes
コンパイル時間 718 ms
コンパイル使用メモリ 112,040 KB
実行使用メモリ 7,340 KB
最終ジャッジ日時 2024-06-12 06:20:05
合計ジャッジ時間 1,857 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 18 ms
7,252 KB
testcase_03 AC 4 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 8 ms
7,220 KB
testcase_07 AC 6 ms
7,252 KB
testcase_08 AC 5 ms
6,940 KB
testcase_09 AC 10 ms
7,148 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 6 ms
7,184 KB
testcase_12 AC 14 ms
7,204 KB
testcase_13 AC 15 ms
7,180 KB
testcase_14 AC 18 ms
7,188 KB
testcase_15 AC 16 ms
7,224 KB
testcase_16 AC 15 ms
7,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.algorithm, std.conv, std.range, std.stdio, std.string;
import std.math;      // math functions

void main()
{
  auto n = readln.chomp.to!int;

  auto pi = primes(n);
  auto gi = new int[](n + 1);

  foreach (int i; iota(4, n + 1)) {
    auto ai = new bool[](i);
    foreach (p; pi) {
      if (i - p < 2) break;
      ai[gi[i - p]] = true;
    }
    gi[i] = ai.countUntil!"!a".to!int;
  }

  writeln(gi[n] == 0 ? "Lose" : "Win");
}

int[] primes(int n)
{
  auto sieve = new bool[]((n + 1) / 2);
  sieve[] = true;

  foreach (p; iota(1, (n.to!real.sqrt.to!int - 1) / 2 + 1))
    if (sieve[p])
      foreach (q; iota(p * 3 + 1, (n + 1) / 2, p * 2 + 1))
        sieve[q] = false;

  auto r = sieve.enumerate
    .filter!("a[1]")
    .map!("a[0]").map!("a * 2 + 1")
    .map!(to!int).array;
  r[0] = 2;

  return r;
}
0