結果

問題 No.390 最長の数列
ユーザー pekempeypekempey
提出日時 2016-07-29 14:53:06
言語 Haskell
(9.8.2)
結果
AC  
実行時間 558 ms / 5,000 ms
コード長 552 bytes
コンパイル時間 2,615 ms
コンパイル使用メモリ 177,792 KB
実行使用メモリ 72,228 KB
最終ジャッジ日時 2024-10-02 11:54:23
合計ジャッジ時間 7,432 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
47,836 KB
testcase_01 AC 99 ms
47,716 KB
testcase_02 AC 104 ms
47,708 KB
testcase_03 AC 98 ms
47,712 KB
testcase_04 AC 103 ms
47,708 KB
testcase_05 AC 551 ms
63,380 KB
testcase_06 AC 427 ms
72,228 KB
testcase_07 AC 99 ms
47,964 KB
testcase_08 AC 97 ms
47,836 KB
testcase_09 AC 101 ms
47,840 KB
testcase_10 AC 558 ms
64,272 KB
testcase_11 AC 555 ms
64,404 KB
testcase_12 AC 556 ms
64,396 KB
testcase_13 AC 267 ms
46,364 KB
testcase_14 AC 539 ms
50,836 KB
testcase_15 AC 96 ms
47,712 KB
testcase_16 AC 95 ms
47,852 KB
testcase_17 AC 122 ms
53,944 KB
testcase_18 AC 130 ms
53,816 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 Control.Monad
import Data.Array.IO
import Data.List

n = 10 ^ 6

main = do
    _ <- readLn :: IO Int
    a <- sort . map read . words <$> getLine :: IO [Int]
    
    dp <- newArray (0, n) (-1) :: IO (IOUArray Int Int)

    forM_ a $ \i -> do
        writeArray dp i 1

    forM_ a $ \i -> do
        forM_ [i * 2, i * 3 .. n] $ \j -> do
            y <- readArray dp j
            when (y > 0) $ writeArray dp j =<< max <$> ((+ 1) <$> readArray dp i) <*> readArray dp j
   
    print =<< maximum <$> getElems dp
    
0