結果
問題 | No.1273 はじめのζ関数 |
ユーザー | こまる |
提出日時 | 2020-10-31 09:47:05 |
言語 | Haskell (9.8.2) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,164 bytes |
コンパイル時間 | 2,605 ms |
コンパイル使用メモリ | 181,248 KB |
実行使用メモリ | 13,440 KB |
最終ジャッジ日時 | 2024-07-22 04:44:31 |
合計ジャッジ時間 | 10,014 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
13,440 KB |
testcase_01 | AC | 63 ms
7,808 KB |
testcase_02 | AC | 166 ms
7,808 KB |
testcase_03 | AC | 456 ms
8,064 KB |
testcase_04 | AC | 77 ms
7,936 KB |
testcase_05 | AC | 35 ms
7,808 KB |
testcase_06 | AC | 376 ms
7,936 KB |
testcase_07 | AC | 67 ms
7,936 KB |
testcase_08 | AC | 477 ms
7,808 KB |
testcase_09 | AC | 232 ms
8,064 KB |
testcase_10 | AC | 476 ms
7,808 KB |
testcase_11 | AC | 39 ms
7,808 KB |
testcase_12 | AC | 53 ms
7,808 KB |
testcase_13 | AC | 482 ms
7,936 KB |
testcase_14 | AC | 92 ms
7,936 KB |
testcase_15 | AC | 100 ms
8,064 KB |
testcase_16 | AC | 96 ms
7,808 KB |
testcase_17 | AC | 82 ms
7,936 KB |
testcase_18 | AC | 160 ms
7,808 KB |
testcase_19 | AC | 171 ms
8,064 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | TLE | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
コンパイルメッセージ
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
ソースコード
{-# LANGUAGE BangPatterns #-} {-# LANGUAGE NumericUnderscores #-} import Control.Monad import Control.Monad.ST import Data.IORef import Data.STRef import qualified Data.Vector.Fusion.Stream.Monadic as VFSM main :: IO () main = do x <- readLn :: IO Int if x == 2 then putStrLn "1000000" else do res <- newIORef (0.0 :: Double) rep2 $ \a -> modifyIORef' res (+ zeta a x) print . floor . (* 1_000_000) =<< readIORef res zeta :: Int -> Int -> Double zeta a x = runST $ do res <- newSTRef (a - 1) rep (x - 1) $ \_ -> do ret <- readSTRef res when (ret <= 1_000_000_000_000) $ modifySTRef res (* a) d <- readSTRef res return (1.0 / fromIntegral d) stream :: Monad m => Int -> Int -> VFSM.Stream m Int stream !l !r = VFSM.Stream step l where step x | x < r = return $ VFSM.Yield x (x + 1) | otherwise = return $ VFSM.Done {-# INLINE [0] step #-} {-# INLINE [1] stream #-} rep :: Monad m => Int -> (Int -> m ()) -> m () rep n = flip VFSM.mapM_ (stream 0 n) {-# INLINE rep #-} rep2 :: Monad m => (Int -> m ()) -> m () rep2 = flip VFSM.mapM_ (stream 2 1_000_000)