結果

問題 No.36 素数が嫌い!
ユーザー code-devocode-devo
提出日時 2016-01-20 05:22:43
言語 Ruby
(3.3.0)
結果
AC  
実行時間 2,105 ms / 5,000 ms
コード長 315 bytes
コンパイル時間 41 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 35,632 KB
最終ジャッジ日時 2024-06-27 00:40:36
合計ジャッジ時間 27,622 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 982 ms
28,640 KB
testcase_01 AC 1,467 ms
29,652 KB
testcase_02 AC 101 ms
12,288 KB
testcase_03 AC 100 ms
12,288 KB
testcase_04 AC 99 ms
12,416 KB
testcase_05 AC 108 ms
12,544 KB
testcase_06 AC 109 ms
12,672 KB
testcase_07 AC 110 ms
12,544 KB
testcase_08 AC 102 ms
12,672 KB
testcase_09 AC 105 ms
12,544 KB
testcase_10 AC 107 ms
12,544 KB
testcase_11 AC 771 ms
26,352 KB
testcase_12 AC 2,072 ms
35,100 KB
testcase_13 AC 2,089 ms
33,840 KB
testcase_14 AC 1,268 ms
29,176 KB
testcase_15 AC 103 ms
12,288 KB
testcase_16 AC 99 ms
12,160 KB
testcase_17 AC 101 ms
12,288 KB
testcase_18 AC 100 ms
12,416 KB
testcase_19 AC 959 ms
27,364 KB
testcase_20 AC 2,105 ms
35,632 KB
testcase_21 AC 1,550 ms
29,976 KB
testcase_22 AC 1,644 ms
30,324 KB
testcase_23 AC 948 ms
28,332 KB
testcase_24 AC 1,131 ms
28,916 KB
testcase_25 AC 1,145 ms
29,360 KB
testcase_26 AC 1,371 ms
29,004 KB
testcase_27 AC 1,626 ms
31,864 KB
testcase_28 AC 1,372 ms
29,268 KB
testcase_29 AC 1,806 ms
33,008 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require 'prime'

def pn_div(n, pn_from = nil)
  pns = Prime.each(Math.sqrt(n).to_i).to_a
  pns.select!{|pn| pn >= pn_from} if pn_from
  pns.each do |pn|
    q, r = n.divmod(pn)
    return pn, q if r == 0
  end
  return nil
end


N = gets.to_i
n1, n2 = pn_div(N)
n1, n2 = pn_div(n2, n1) if n1
puts n1 ? "YES" : "NO"
0