結果

問題 No.7 プライムナンバーゲーム
ユーザー simansiman
提出日時 2016-03-22 00:11:22
言語 Ruby
(3.3.0)
結果
AC  
実行時間 820 ms / 5,000 ms
コード長 358 bytes
コンパイル時間 58 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 13,184 KB
最終ジャッジ日時 2024-10-01 15:42:23
合計ジャッジ時間 7,155 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
12,288 KB
testcase_01 AC 98 ms
12,544 KB
testcase_02 AC 820 ms
12,928 KB
testcase_03 AC 145 ms
12,544 KB
testcase_04 AC 113 ms
12,416 KB
testcase_05 AC 110 ms
12,416 KB
testcase_06 AC 311 ms
12,672 KB
testcase_07 AC 243 ms
12,672 KB
testcase_08 AC 165 ms
12,800 KB
testcase_09 AC 424 ms
12,928 KB
testcase_10 AC 101 ms
12,416 KB
testcase_11 AC 243 ms
12,672 KB
testcase_12 AC 614 ms
12,672 KB
testcase_13 AC 626 ms
12,672 KB
testcase_14 AC 787 ms
13,184 KB
testcase_15 AC 760 ms
13,056 KB
testcase_16 AC 714 ms
12,928 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require 'prime'

class Yukicoder
  def initialize
    n = gets.chomp.to_i
    result = Hash.new(false)

    3.upto(n) do |i|
      Prime.each(i) do |j|
        if (i - j) > 1 && !result[i-j]
          result[i] = true
          break
        end
      end
    end

    if result[n]
      puts "Win"
    else
      puts "Lose"
    end
  end
end

Yukicoder.new
0