結果

問題 No.35 タイパー高橋
ユーザー tjnttjnt
提出日時 2021-07-29 04:37:37
言語 Haskell
(9.8.2)
結果
AC  
実行時間 12 ms / 5,000 ms
コード長 446 bytes
コンパイル時間 7,328 ms
コンパイル使用メモリ 176,400 KB
実行使用メモリ 8,064 KB
最終ジャッジ日時 2024-09-14 02:57:25
合計ジャッジ時間 5,621 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
8,064 KB
testcase_01 AC 10 ms
7,936 KB
testcase_02 AC 12 ms
7,936 KB
testcase_03 AC 12 ms
7,936 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 #

solve :: [(Int,String)] -> (Int,Int)
solve = foldl f (0,0)
  where
    k = 12
    f (a,b) (t,s) = let m = 12 * t `div` 1000
                        l = length s
                     in (a + min m l, b + max (l-m) 0)

main :: IO ()
main = do
    n <- readLn :: IO Int
    xs <- map ((\[a,b] -> (read a, b)) . words)
        . lines <$> getContents :: IO [(Int,String)]
    let res = solve xs
    putStrLn . unwords . map show $ [fst res, snd res]
0