結果
問題 | No.146 試験監督(1) |
ユーザー | Ysmr_Ry |
提出日時 | 2016-11-23 01:11:35 |
言語 | Haskell (9.8.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 361 bytes |
コンパイル時間 | 4,677 ms |
コンパイル使用メモリ | 182,824 KB |
実行使用メモリ | 8,448 KB |
最終ジャッジ日時 | 2024-05-05 12:24:05 |
合計ジャッジ時間 | 3,651 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 Control.Applicative import Control.Monad import qualified Data.ByteString.Lazy.Char8 as B import Data.Maybe main :: IO () main = do getLine cds <- map (solve . map (fst . fromJust . B.readInteger) . B.words) . B.lines <$> B.getContents print $ sum cds `mod` (10^9+7) solve :: [Integer] -> Integer solve [c,d] | c <= 2 = d | otherwise = 2*d