結果

問題 No.36 素数が嫌い!
ユーザー simansiman
提出日時 2015-04-02 22:23:29
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 269 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-07-03 23:37:51
合計ジャッジ時間 9,008 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 346 ms
12,544 KB
testcase_01 AC 129 ms
12,544 KB
testcase_02 AC 109 ms
12,288 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 115 ms
12,544 KB
testcase_08 AC 107 ms
12,544 KB
testcase_09 AC 111 ms
12,288 KB
testcase_10 AC 111 ms
12,416 KB
testcase_11 AC 442 ms
12,672 KB
testcase_12 AC 1,101 ms
12,544 KB
testcase_13 WA -
testcase_14 AC 115 ms
12,544 KB
testcase_15 AC 108 ms
12,416 KB
testcase_16 AC 110 ms
12,288 KB
testcase_17 AC 112 ms
12,288 KB
testcase_18 AC 112 ms
12,416 KB
testcase_19 AC 152 ms
12,416 KB
testcase_20 AC 146 ms
12,544 KB
testcase_21 AC 240 ms
12,544 KB
testcase_22 AC 126 ms
12,544 KB
testcase_23 AC 116 ms
12,672 KB
testcase_24 AC 251 ms
12,416 KB
testcase_25 AC 283 ms
12,672 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require 'prime'

class Yukicoder
  def initialize
    n = gets.chomp.to_i

    prime_list = n.prime_division

    if prime_list.size.zero? || (prime_list.size == 1 && prime_list.first.last == 1)
      puts 'NO'
    else
      puts 'YES'
    end
  end
end

Yukicoder.new
0