結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
12,416 KB
testcase_01 AC 104 ms
12,160 KB
testcase_02 AC 242 ms
16,640 KB
testcase_03 AC 105 ms
12,160 KB
testcase_04 AC 109 ms
12,416 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 108 ms
12,288 KB
testcase_08 AC 107 ms
12,416 KB
testcase_09 AC 106 ms
12,416 KB
testcase_10 AC 104 ms
12,160 KB
testcase_11 AC 105 ms
12,416 KB
testcase_12 AC 106 ms
12,544 KB
testcase_13 WA -
testcase_14 AC 120 ms
12,544 KB
testcase_15 AC 238 ms
16,768 KB
testcase_16 AC 250 ms
16,640 KB
testcase_17 AC 382 ms
18,496 KB
testcase_18 AC 130 ms
12,800 KB
testcase_19 AC 188 ms
14,208 KB
testcase_20 WA -
testcase_21 AC 378 ms
18,508 KB
testcase_22 AC 376 ms
18,496 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 176 ms
12,672 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 178 ms
12,672 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 130 ms
12,672 KB
testcase_34 AC 183 ms
12,416 KB
testcase_35 AC 161 ms
12,416 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 252 ms
16,640 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 246 ms
16,512 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