結果

問題 No.300 平方数
ユーザー shi-moshi-mo
提出日時 2016-10-26 00:19:09
言語 Ruby
(3.3.0)
結果
AC  
実行時間 420 ms / 1,000 ms
コード長 336 bytes
コンパイル時間 41 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 18,788 KB
最終ジャッジ日時 2024-11-24 03:47:34
合計ジャッジ時間 10,121 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
12,544 KB
testcase_01 AC 96 ms
12,288 KB
testcase_02 AC 224 ms
16,640 KB
testcase_03 AC 89 ms
12,160 KB
testcase_04 AC 89 ms
12,160 KB
testcase_05 AC 87 ms
12,160 KB
testcase_06 AC 86 ms
12,416 KB
testcase_07 AC 88 ms
12,288 KB
testcase_08 AC 89 ms
12,288 KB
testcase_09 AC 90 ms
12,416 KB
testcase_10 AC 91 ms
12,416 KB
testcase_11 AC 88 ms
12,160 KB
testcase_12 AC 91 ms
12,416 KB
testcase_13 AC 420 ms
18,516 KB
testcase_14 AC 106 ms
12,672 KB
testcase_15 AC 217 ms
16,640 KB
testcase_16 AC 216 ms
16,512 KB
testcase_17 AC 352 ms
18,628 KB
testcase_18 AC 104 ms
12,544 KB
testcase_19 AC 154 ms
14,336 KB
testcase_20 AC 156 ms
14,208 KB
testcase_21 AC 345 ms
18,660 KB
testcase_22 AC 341 ms
18,660 KB
testcase_23 AC 340 ms
18,584 KB
testcase_24 AC 220 ms
16,640 KB
testcase_25 AC 168 ms
12,672 KB
testcase_26 AC 223 ms
16,640 KB
testcase_27 AC 220 ms
16,512 KB
testcase_28 AC 155 ms
12,416 KB
testcase_29 AC 342 ms
18,748 KB
testcase_30 AC 345 ms
18,788 KB
testcase_31 AC 349 ms
18,664 KB
testcase_32 AC 222 ms
16,640 KB
testcase_33 AC 120 ms
12,672 KB
testcase_34 AC 166 ms
12,416 KB
testcase_35 AC 140 ms
12,544 KB
testcase_36 AC 223 ms
16,640 KB
testcase_37 AC 216 ms
16,640 KB
testcase_38 AC 217 ms
16,640 KB
testcase_39 AC 226 ms
16,512 KB
testcase_40 AC 222 ms
16,768 KB
testcase_41 AC 156 ms
14,208 KB
testcase_42 AC 219 ms
16,640 KB
testcase_43 AC 340 ms
18,776 KB
testcase_44 AC 219 ms
16,768 KB
testcase_45 AC 155 ms
14,080 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require 'prime'

x = gets.to_i

if Prime.prime?(x)
  puts x
  exit 0
end

d = [1]
q = [1]
Prime.each(Math.sqrt(x)) do |i|
  next if 0 != x % i

  n = x
  while 0 == n % i
    n /= i
    d << i

    if q.include?(i)
      q.delete(i)
      next
    end

    q << i
  end
end

y = x / d.inject(:*)
if 1 < y
  q << y
end

puts q.inject(:*)
0