結果

問題 No.976 2 の 128 乗と M
ユーザー こまる
提出日時 2020-10-16 00:45:27
言語 Haskell
(9.10.1)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 697 bytes
コンパイル時間 2,181 ms
コンパイル使用メモリ 168,960 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-20 20:11:57
合計ジャッジ時間 4,068 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 50
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 #

{-# LANGUAGE BangPatterns #-}

import           Control.Monad.ST
import           Data.STRef
import qualified Data.Vector.Fusion.Stream.Monadic as VFSM

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 #-}

main :: IO ()
main = readLn >>= print . solver

solver :: Int -> Int
solver m = runST $ do
  ans <- newSTRef (1 :: Int)
  rep 128 $ \_ -> modifySTRef' ans (flip mod m . (*2))
  readSTRef ans
0