結果

問題 No.7 プライムナンバーゲーム
ユーザー d_nishiyama85d_nishiyama85
提出日時 2016-07-08 00:03:01
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,997 ms / 5,000 ms
コード長 608 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 19,712 KB
最終ジャッジ日時 2024-10-01 15:48:27
合計ジャッジ時間 14,845 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
12,544 KB
testcase_01 AC 87 ms
12,416 KB
testcase_02 AC 1,974 ms
19,456 KB
testcase_03 AC 201 ms
12,928 KB
testcase_04 AC 109 ms
12,416 KB
testcase_05 AC 113 ms
12,416 KB
testcase_06 AC 631 ms
14,848 KB
testcase_07 AC 453 ms
13,952 KB
testcase_08 AC 253 ms
13,056 KB
testcase_09 AC 912 ms
15,872 KB
testcase_10 AC 81 ms
12,288 KB
testcase_11 AC 446 ms
13,952 KB
testcase_12 AC 1,428 ms
17,536 KB
testcase_13 AC 1,540 ms
18,048 KB
testcase_14 AC 1,997 ms
19,712 KB
testcase_15 AC 1,874 ms
19,072 KB
testcase_16 AC 1,729 ms
18,688 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require 'pp'

def main
  n = gets.to_i
  @primes = sieve n
  puts (solve(n) === 1) ? "Win" : "Lose"
end

def solve(n)
  dp = {}
  (2..n).each{|i|
    @primes.each {|p|
      if dp.key?(i - p) && dp[i-p] === 0
        dp[i] = 1
      end
    }
    if !dp.key?(i)
      dp[i] = 0
    end
  }
  dp[n]
end

# n 以下の素数をすべて出す
def sieve(n)
  search = *(2..n)
  primes = []
  i = 2
  while i * i <= n && !search.empty?
    p = search.shift
    primes << p
    _next = []
    search.each do |m|
      if m % p > 0
          _next << m
      end
    end
    search = _next
  end
  primes
end

main
0