結果

問題 No.36 素数が嫌い!
ユーザー aimyaimy
提出日時 2017-06-02 21:55:17
言語 Haskell
(9.8.2)
結果
WA  
実行時間 -
コード長 563 bytes
コンパイル時間 7,873 ms
コンパイル使用メモリ 167,808 KB
実行使用メモリ 20,224 KB
最終ジャッジ日時 2024-09-21 22:20:05
合計ジャッジ時間 29,902 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 726 ms
14,720 KB
testcase_01 AC 1,398 ms
19,200 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 4 ms
6,944 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 449 ms
11,776 KB
testcase_12 AC 1,928 ms
19,968 KB
testcase_13 AC 1,950 ms
19,968 KB
testcase_14 AC 12 ms
8,192 KB
testcase_15 WA -
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 1 ms
6,944 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 565 ms
14,464 KB
testcase_20 AC 1,941 ms
19,840 KB
testcase_21 AC 1,365 ms
19,200 KB
testcase_22 AC 1,411 ms
19,456 KB
testcase_23 AC 721 ms
14,592 KB
testcase_24 WA -
testcase_25 AC 824 ms
14,976 KB
testcase_26 AC 1,020 ms
14,848 KB
testcase_27 AC 1,591 ms
19,328 KB
testcase_28 AC 978 ms
14,976 KB
testcase_29 AC 1,987 ms
20,224 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 Data.Bool
import Data.List

primes = 2:3:[x | i<-[1..], j<-[-1,1], let x = 6*i+j, isPrime x]
 where isPrime n = null [i | i<-takeWhile (\x -> x^2 <= n) primes, mod n i == 0]

factorization :: Integer -> [Integer]
factorization n = unfoldr fact (n, primes)
 where
  q = (floor . (/ 4) . sqrt . fromIntegral) n
  fact (n', pps@(p:ps))
   | n' == 1 = Nothing
   | p > q = Just (n',(1,pps))
   | otherwise = let (d,m) = divMod n' p in if m==0 then Just (p,(d,pps)) else fact (n',ps)

main = readLn >>= putStrLn . bool "NO" "YES" . (>2) . length . factorization
0