結果
問題 | No.35 タイパー高橋 |
ユーザー | Haar |
提出日時 | 2016-04-03 18:36:34 |
言語 | Haskell (9.8.2) |
結果 |
AC
|
実行時間 | 12 ms / 5,000 ms |
コード長 | 268 bytes |
コンパイル時間 | 2,018 ms |
コンパイル使用メモリ | 172,288 KB |
実行使用メモリ | 8,064 KB |
最終ジャッジ日時 | 2024-10-02 12:39:37 |
合計ジャッジ時間 | 2,527 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 10 ms
8,064 KB |
testcase_01 | AC | 10 ms
8,064 KB |
testcase_02 | AC | 12 ms
8,064 KB |
testcase_03 | AC | 12 ms
8,064 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 ) Main.hs:2:1: warning: [GHC-94817] [-Wtabs] Tab character found here, and in two further locations. Suggested fix: Please use spaces instead. | 2 | getLine | ^^^^^^^^ [2 of 2] Linking a.out
ソースコード
main = do getLine (tp,rest) <- getContents >>= return . foldl1 (\(a,b) (c,d) -> (a+c,b+d)) . map ((\(t:s:_) -> let m = floor(12*(read t)/1000) in if m > length s then (length s, 0) else (m, length s - m) ) . words) . lines putStrLn $ (show tp) ++ " " ++ (show rest)