結果

問題 No.79 過小評価ダメ・ゼッタイ
ユーザー tjnttjnt
提出日時 2021-08-04 20:10:28
言語 Haskell
(9.8.2)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 447 bytes
コンパイル時間 8,934 ms
コンパイル使用メモリ 172,160 KB
実行使用メモリ 20,864 KB
最終ジャッジ日時 2024-09-16 15:10:09
合計ジャッジ時間 10,805 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
8,192 KB
testcase_01 AC 121 ms
19,712 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 123 ms
20,224 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 74 ms
14,208 KB
testcase_15 AC 32 ms
10,624 KB
testcase_16 AC 94 ms
16,512 KB
testcase_17 AC 29 ms
11,008 KB
testcase_18 AC 90 ms
16,640 KB
testcase_19 AC 68 ms
14,080 KB
testcase_20 AC 123 ms
19,712 KB
testcase_21 AC 6 ms
8,064 KB
testcase_22 AC 45 ms
11,904 KB
testcase_23 AC 116 ms
18,816 KB
testcase_24 AC 121 ms
20,864 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 qualified Data.Vector.Mutable as MV
import Control.Monad.ST

solve :: Int -> [Int] -> Int
solve s l = runST $ MV.replicate s 0 >>= \v -> go v l
  where
    go v []  = fst <$> MV.ifoldr (\i x (ai,ax) ->
        if ax < x then (i,x) else (ai,ax)) (0,0) v
    go v (x:xs) = do
        MV.modify v succ x
        go v xs

main :: IO ()
main = do
    _ <- readLn :: IO Int
    l <- map read . words <$> getLine :: IO [Int]
    print $ solve 7 l
0