結果

問題 No.36 素数が嫌い!
ユーザー 情報学生情報学生
提出日時 2019-08-27 12:01:39
言語 Haskell
(9.8.2)
結果
TLE  
実行時間 -
コード長 406 bytes
コンパイル時間 4,963 ms
コンパイル使用メモリ 172,288 KB
実行使用メモリ 15,744 KB
最終ジャッジ日時 2024-11-14 06:51:19
合計ジャッジ時間 100,439 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 226 ms
15,744 KB
testcase_02 AC 1 ms
14,624 KB
testcase_03 AC 2 ms
14,496 KB
testcase_04 AC 2 ms
14,496 KB
testcase_05 TLE -
testcase_06 AC 6 ms
14,500 KB
testcase_07 TLE -
testcase_08 AC 1 ms
14,624 KB
testcase_09 AC 1 ms
13,640 KB
testcase_10 AC 342 ms
15,744 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 771 ms
14,884 KB
testcase_14 AC 8 ms
6,912 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 1 ms
6,820 KB
testcase_17 AC 1 ms
6,816 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 TLE -
testcase_20 AC 4,033 ms
8,064 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 127 ms
7,936 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 #

main :: IO ()
main = (readLn :: IO Integer) >>= putStrLn . solve

solve :: Integer -> String
solve n = if m > 2 then "YES" else "NO" 
    where
        m = length $ factorization n

factors :: Integer -> [Integer]
factors n = [x | x <- [1..n], n `mod` x == 0]

factorization :: Integer -> [Integer]
factorization 1 = []
factorization x = v : factorization (x `div` v)
    where
        v = (factors x) !! 1
0