結果

問題 No.7 プライムナンバーゲーム
ユーザー gemmarogemmaro
提出日時 2020-06-28 12:48:05
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,085 ms / 5,000 ms
コード長 346 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 78,208 KB
最終ジャッジ日時 2024-10-01 16:37:16
合計ジャッジ時間 10,355 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,800 KB
testcase_01 AC 93 ms
12,544 KB
testcase_02 AC 1,076 ms
78,208 KB
testcase_03 AC 261 ms
24,960 KB
testcase_04 AC 166 ms
17,792 KB
testcase_05 AC 170 ms
17,792 KB
testcase_06 AC 521 ms
43,008 KB
testcase_07 AC 423 ms
38,784 KB
testcase_08 AC 292 ms
27,776 KB
testcase_09 AC 660 ms
44,800 KB
testcase_10 AC 98 ms
12,544 KB
testcase_11 AC 444 ms
29,184 KB
testcase_12 AC 893 ms
70,400 KB
testcase_13 AC 909 ms
73,216 KB
testcase_14 AC 1,085 ms
78,080 KB
testcase_15 AC 1,050 ms
65,408 KB
testcase_16 AC 976 ms
65,408 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# frozen_string_literal: true

def solve
  return 'Lose' if N == 2 || N == 3

  require 'prime'
  primes = Prime.each(10_000).to_a

  result = (4..N).map { _1 - 2 }.each_with_object([false, false]) do |i, r|
    r << primes.select { _1 <= i }
               .any? { !(r[i - _1]) }
  end

  result[-1] ? :Win : :Lose
end

N = gets.to_i

puts solve
0