結果
問題 | No.146 試験監督(1) |
ユーザー | 情報学生 |
提出日時 | 2019-08-22 22:21:59 |
言語 | Haskell (9.8.2) |
結果 |
AC
|
実行時間 | 91 ms / 1,000 ms |
コード長 | 745 bytes |
コンパイル時間 | 1,932 ms |
コンパイル使用メモリ | 180,908 KB |
実行使用メモリ | 32,384 KB |
最終ジャッジ日時 | 2024-10-13 04:43:18 |
合計ジャッジ時間 | 2,852 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 88 ms
32,256 KB |
testcase_01 | AC | 91 ms
32,384 KB |
testcase_02 | AC | 88 ms
32,384 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
ソースコード
import Control.Applicative ((<$>)) import Control.Monad (replicateM) import Data.ByteString.Char8 (ByteString) import Data.Char (isSpace) import Data.List (unfoldr, foldl') import qualified Data.ByteString.Char8 as B getIntList :: IO [Integer] getIntList = unfoldr f <$> B.getLine where f s = do (n, s') <- B.readInteger s return (n, B.dropWhile isSpace s') evalSittable :: [Integer] -> Integer evalSittable [c, d] | odd c = ((c `div` 2) + 1) * d | otherwise = (c `div` 2) * d solve :: [[Integer]] -> Integer solve xss = (foldl' (\acc -> \xs -> acc + evalSittable xs) 0 xss) `mod` 1000000007 main :: IO () main = do n <- readLn :: IO Int solve <$> replicateM n getIntList >>= print