結果

問題 No.35 タイパー高橋
ユーザー tottoripapertottoripaper
提出日時 2014-11-24 06:17:17
言語 Haskell
(9.8.2)
結果
AC  
実行時間 17 ms / 5,000 ms
コード長 407 bytes
コンパイル時間 6,636 ms
コンパイル使用メモリ 173,568 KB
実行使用メモリ 13,184 KB
最終ジャッジ日時 2024-06-10 22:02:40
合計ジャッジ時間 7,202 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
11,008 KB
testcase_01 AC 11 ms
10,880 KB
testcase_02 AC 17 ms
13,056 KB
testcase_03 AC 17 ms
13,184 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

ソースコード

diff #

import Control.Applicative
import Control.Monad
import Data.List (foldl')
import Text.Printf

main = do
  n <- readLn
  ts <- replicateM n $ words <$> getLine
  let
    f (t:s:_) = (s'-missed, missed)
      where
        t' = read t
        s' = length s
        missed = max (s'-12*t'`div`1000) 0
    (a, b) = foldl' (\(a,b) (c,d) -> (a+c,b+d)) (0, 0) $ map f ts
   in printf "%d %d\n" a b
0