結果

問題 No.300 平方数
ユーザー kuwakuwa
提出日時 2015-12-06 00:10:08
言語 Haskell
(9.8.2)
結果
AC  
実行時間 300 ms / 1,000 ms
コード長 542 bytes
コンパイル時間 1,707 ms
コンパイル使用メモリ 171,776 KB
実行使用メモリ 24,704 KB
最終ジャッジ日時 2024-09-14 14:34:34
合計ジャッジ時間 8,975 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 184 ms
18,944 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 297 ms
24,704 KB
testcase_14 AC 21 ms
9,856 KB
testcase_15 AC 128 ms
15,360 KB
testcase_16 AC 110 ms
14,848 KB
testcase_17 AC 297 ms
24,576 KB
testcase_18 AC 19 ms
9,728 KB
testcase_19 AC 88 ms
12,416 KB
testcase_20 AC 47 ms
10,752 KB
testcase_21 AC 300 ms
24,576 KB
testcase_22 AC 254 ms
22,016 KB
testcase_23 AC 236 ms
21,120 KB
testcase_24 AC 144 ms
16,768 KB
testcase_25 AC 229 ms
21,120 KB
testcase_26 AC 203 ms
20,352 KB
testcase_27 AC 128 ms
15,616 KB
testcase_28 AC 224 ms
21,376 KB
testcase_29 AC 265 ms
23,808 KB
testcase_30 AC 275 ms
23,296 KB
testcase_31 AC 285 ms
24,448 KB
testcase_32 AC 151 ms
16,512 KB
testcase_33 AC 78 ms
12,544 KB
testcase_34 AC 257 ms
22,144 KB
testcase_35 AC 149 ms
16,512 KB
testcase_36 AC 186 ms
18,944 KB
testcase_37 AC 143 ms
16,768 KB
testcase_38 AC 179 ms
16,640 KB
testcase_39 AC 208 ms
20,096 KB
testcase_40 AC 172 ms
14,976 KB
testcase_41 AC 67 ms
10,240 KB
testcase_42 AC 149 ms
16,768 KB
testcase_43 AC 258 ms
22,144 KB
testcase_44 AC 191 ms
18,816 KB
testcase_45 AC 83 ms
11,776 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.8.2/environments/default
[1 of 2] Compiling Main             ( Main.hs, Main.o )
[2 of 2] Linking a.out

ソースコード

diff #

import Control.Applicative
import Data.List

primes :: [Int]
primes = 2 : [ x | x <- [3,5..],
                null $ filter (\z -> x `mod` z == 0) $ takeWhile (\y -> y^2 <= x) primes]

main :: IO ()
main = do
  x <- read <$> getLine :: IO Int
  print $ solve x

solve :: Int -> Int
solve x = let (g, s) = foldr f (1, x) $ (takeWhile (\z -> z^2<= x) primes)
          in g * s
  where f a (y, m) = let (i, m') = rec a m 0 in (y * i, m')
        rec d z c
          | z `mod` d == 0 = rec d (z `div` d) (1-c)
          | otherwise = (d ^ c, z)
0