結果

問題 No.300 平方数
ユーザー code-devocode-devo
提出日時 2016-01-19 19:59:24
言語 Ruby
(3.3.0)
結果
AC  
実行時間 395 ms / 1,000 ms
コード長 262 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 18,840 KB
最終ジャッジ日時 2024-09-21 14:26:31
合計ジャッジ時間 12,667 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
12,288 KB
testcase_01 AC 102 ms
12,288 KB
testcase_02 AC 257 ms
16,640 KB
testcase_03 AC 101 ms
12,288 KB
testcase_04 AC 102 ms
12,416 KB
testcase_05 AC 100 ms
12,544 KB
testcase_06 AC 101 ms
12,544 KB
testcase_07 AC 99 ms
12,416 KB
testcase_08 AC 101 ms
12,416 KB
testcase_09 AC 101 ms
12,416 KB
testcase_10 AC 101 ms
12,416 KB
testcase_11 AC 105 ms
12,288 KB
testcase_12 AC 105 ms
12,928 KB
testcase_13 AC 389 ms
18,532 KB
testcase_14 AC 123 ms
12,672 KB
testcase_15 AC 247 ms
16,768 KB
testcase_16 AC 250 ms
16,768 KB
testcase_17 AC 394 ms
18,840 KB
testcase_18 AC 122 ms
12,672 KB
testcase_19 AC 182 ms
14,208 KB
testcase_20 AC 176 ms
14,336 KB
testcase_21 AC 393 ms
18,764 KB
testcase_22 AC 395 ms
18,652 KB
testcase_23 AC 393 ms
18,792 KB
testcase_24 AC 256 ms
16,640 KB
testcase_25 AC 388 ms
18,664 KB
testcase_26 AC 257 ms
16,768 KB
testcase_27 AC 247 ms
16,640 KB
testcase_28 AC 256 ms
16,640 KB
testcase_29 AC 392 ms
18,652 KB
testcase_30 AC 388 ms
18,652 KB
testcase_31 AC 391 ms
18,656 KB
testcase_32 AC 250 ms
16,768 KB
testcase_33 AC 179 ms
14,208 KB
testcase_34 AC 388 ms
18,660 KB
testcase_35 AC 251 ms
16,768 KB
testcase_36 AC 254 ms
16,640 KB
testcase_37 AC 249 ms
16,512 KB
testcase_38 AC 257 ms
16,768 KB
testcase_39 AC 259 ms
16,512 KB
testcase_40 AC 257 ms
16,640 KB
testcase_41 AC 177 ms
14,208 KB
testcase_42 AC 252 ms
16,640 KB
testcase_43 AC 388 ms
18,656 KB
testcase_44 AC 254 ms
16,512 KB
testcase_45 AC 178 ms
14,208 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require 'prime'

x = gets.to_i
ans = 1

hash = Hash.new(0)
Prime.each(Math.sqrt(x)) do |prime|
  quo, rem = x.divmod(prime)
  if rem == 0 then
    hash[prime] += 1
    x = quo
    redo
  else
    ans *= prime if hash[prime] % 2 == 1
  end
end
ans *= x

puts ans
0