結果
問題 | No.146 試験監督(1) |
ユーザー | Kaito Udagawa |
提出日時 | 2015-02-09 00:27:56 |
言語 | Haskell (9.8.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 753 bytes |
コンパイル時間 | 5,196 ms |
コンパイル使用メモリ | 180,172 KB |
実行使用メモリ | 26,240 KB |
最終ジャッジ日時 | 2024-06-23 09:15:57 |
合計ジャッジ時間 | 6,116 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
コンパイルメッセージ
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 Data.Functor import Control.Monad import qualified Data.ByteString.Char8 as B import Data.Maybe countExaminee :: [[Int]] -> Int countExaminee xs = count xs `mod` 1000000007 where count :: [[Int]] -> Int count [] = 0 count ((c:d:_):xs) = v' + ((count xs) `mod` 1000000007) where c' = c `mod` 1000000007 d' = d `mod` 1000000007 v' = (((c' + 1) `div` 2) * d') `mod` 1000000007 readInts :: B.ByteString -> [Int] readInts s = fst <$> mapMaybe (B.readInt) (B.words s) main :: IO () -- main = countExaminee <$> (readInts <$>) <$> B.lines <$> B.getContents >>= putStrLn . show main = readInts <$> B.getLine >>= \ (n:_) -> countExaminee <$> (readInts <$>) <$> replicateM n (B.getLine) >>= putStrLn . show