結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
12,416 KB
testcase_01 AC 91 ms
12,416 KB
testcase_02 AC 223 ms
16,640 KB
testcase_03 AC 88 ms
12,160 KB
testcase_04 AC 92 ms
12,288 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 89 ms
12,544 KB
testcase_08 AC 84 ms
12,288 KB
testcase_09 AC 87 ms
12,416 KB
testcase_10 AC 87 ms
12,288 KB
testcase_11 AC 89 ms
12,288 KB
testcase_12 AC 90 ms
12,544 KB
testcase_13 WA -
testcase_14 AC 104 ms
12,800 KB
testcase_15 AC 217 ms
16,640 KB
testcase_16 AC 220 ms
16,512 KB
testcase_17 AC 342 ms
18,532 KB
testcase_18 AC 104 ms
12,672 KB
testcase_19 AC 154 ms
14,080 KB
testcase_20 WA -
testcase_21 AC 345 ms
18,628 KB
testcase_22 AC 340 ms
18,716 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 160 ms
12,672 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 156 ms
12,800 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 121 ms
12,544 KB
testcase_34 AC 166 ms
12,544 KB
testcase_35 AC 142 ms
12,416 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 220 ms
16,384 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 222 ms
16,768 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require 'prime'

x = gets.to_i

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

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

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

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

    d << i
  end
end

puts d.inject(:*)
0