結果

問題 No.300 平方数
ユーザー yumechiyumechi
提出日時 2015-11-13 23:51:02
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 346 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 21,248 KB
最終ジャッジ日時 2024-09-13 15:45:08
合計ジャッジ時間 11,613 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
12,416 KB
testcase_01 AC 102 ms
12,416 KB
testcase_02 AC 246 ms
15,872 KB
testcase_03 AC 104 ms
12,544 KB
testcase_04 AC 102 ms
12,288 KB
testcase_05 WA -
testcase_06 AC 100 ms
12,416 KB
testcase_07 AC 101 ms
12,672 KB
testcase_08 AC 102 ms
12,544 KB
testcase_09 AC 101 ms
12,544 KB
testcase_10 AC 101 ms
12,416 KB
testcase_11 AC 102 ms
12,416 KB
testcase_12 AC 103 ms
12,544 KB
testcase_13 WA -
testcase_14 AC 121 ms
12,928 KB
testcase_15 AC 238 ms
16,000 KB
testcase_16 AC 240 ms
17,024 KB
testcase_17 AC 376 ms
20,524 KB
testcase_18 AC 119 ms
12,800 KB
testcase_19 AC 177 ms
14,208 KB
testcase_20 WA -
testcase_21 AC 375 ms
20,684 KB
testcase_22 AC 375 ms
21,120 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 179 ms
12,800 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 176 ms
12,672 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 133 ms
12,544 KB
testcase_34 AC 184 ms
12,544 KB
testcase_35 AC 158 ms
12,544 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 244 ms
15,744 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 241 ms
15,616 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require 'prime'
x = gets.to_i
if Prime.prime?(x) || x == 1
    puts x
    exit(0)
end

res = 1
arr = Prime.each(Math.sqrt(x).to_i + 1).to_a
for a in arr do
    if x == 1
        puts res
        exit(0)
    end
    cnt = 0
    while x % a == 0 do
        x /= a
        cnt += 1
    end
    if cnt % 2 == 1
        res *= a
    end
end

puts res
0