結果
問題 | No.146 試験監督(1) |
ユーザー | Ysmr_Ry |
提出日時 | 2016-11-23 00:51:07 |
言語 | Haskell (9.8.2) |
結果 |
TLE
|
実行時間 | - |
コード長 | 261 bytes |
コンパイル時間 | 6,339 ms |
コンパイル使用メモリ | 172,800 KB |
実行使用メモリ | 200,576 KB |
最終ジャッジ日時 | 2024-05-05 12:23:59 |
合計ジャッジ時間 | 6,901 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | MLE | - |
コンパイルメッセージ
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 main :: IO () main = do n <- readLn cds <- replicateM n $ solve . map read . words <$> getLine print $ sum cds `mod` (10^9+7) solve :: [Integer] -> Integer solve [c,d] | c <= 2 = d | otherwise = 2*d