結果
問題 | No.146 試験監督(1) |
ユーザー | はむ吉🐹 |
提出日時 | 2015-10-24 19:42:47 |
言語 | Haskell (9.8.2) |
結果 |
AC
|
実行時間 | 650 ms / 1,000 ms |
コード長 | 288 bytes |
コンパイル時間 | 1,662 ms |
コンパイル使用メモリ | 176,896 KB |
実行使用メモリ | 8,448 KB |
最終ジャッジ日時 | 2024-09-13 07:16:32 |
合計ジャッジ時間 | 4,876 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 650 ms
8,192 KB |
testcase_01 | AC | 650 ms
8,448 KB |
testcase_02 | AC | 647 ms
8,192 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
ソースコード
maxExaminees :: [[Integer]] -> Integer maxExaminees = (`mod` 1000000007) . sum . map (`mod` 1000000007) . map (\(c : d : _) -> (*) d $ (`mod` 1000000007) $ (c + 1) `div` 2) main :: IO () main = getLine >> getContents >>= print . maxExaminees . map (map read) . map words . lines