結果

問題 No.36 素数が嫌い!
ユーザー gemmarogemmaro
提出日時 2020-06-26 11:25:11
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 182 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-07-03 22:13:10
合計ジャッジ時間 9,216 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 119 ms
12,672 KB
testcase_02 AC 99 ms
12,160 KB
testcase_03 AC 95 ms
12,288 KB
testcase_04 AC 96 ms
12,416 KB
testcase_05 AC 97 ms
12,544 KB
testcase_06 AC 104 ms
12,544 KB
testcase_07 AC 102 ms
12,672 KB
testcase_08 AC 97 ms
12,288 KB
testcase_09 AC 102 ms
12,544 KB
testcase_10 AC 100 ms
12,288 KB
testcase_11 AC 404 ms
12,544 KB
testcase_12 AC 1,024 ms
12,672 KB
testcase_13 AC 1,029 ms
12,800 KB
testcase_14 AC 98 ms
12,544 KB
testcase_15 AC 97 ms
12,416 KB
testcase_16 AC 96 ms
12,288 KB
testcase_17 AC 96 ms
12,544 KB
testcase_18 AC 97 ms
12,416 KB
testcase_19 AC 137 ms
12,672 KB
testcase_20 AC 126 ms
12,800 KB
testcase_21 AC 217 ms
12,544 KB
testcase_22 AC 111 ms
12,544 KB
testcase_23 AC 102 ms
12,672 KB
testcase_24 AC 235 ms
12,544 KB
testcase_25 WA -
testcase_26 AC 429 ms
12,544 KB
testcase_27 AC 113 ms
12,672 KB
testcase_28 AC 417 ms
12,672 KB
testcase_29 AC 102 ms
12,672 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# frozen_string_literal: true

def solve
  require 'prime'
  h = Prime.prime_division(N).to_h
  h.size >= 3 || h.values.find { _1 >= 3 } ? 'YES' : 'NO'
end

N = gets.to_i

puts solve
0