結果
問題 |
No.36 素数が嫌い!
|
ユーザー |
|
提出日時 | 2018-05-12 20:14:23 |
言語 | Haskell (9.10.1) |
結果 |
AC
|
実行時間 | 151 ms / 5,000 ms |
コード長 | 372 bytes |
コンパイル時間 | 5,767 ms |
コンパイル使用メモリ | 175,960 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-28 09:42:03 |
合計ジャッジ時間 | 7,407 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 26 |
コンパイルメッセージ
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
ソースコード
import Control.Applicative ((<$>)) main :: IO () main = solve <$> readLn >>= putStrLn solve :: Int -> String solve n | l > 2 = "YES" | otherwise = "NO" where l = length . facts $ n facts :: Int -> [Int] facts = f [] 2 where f ls d x | d * d > x = (x:ls) | x `mod` d == 0 = f (d:ls) d (x `div` d) | otherwise = f ls (d+1) x