結果

問題 No.49 算数の宿題
ユーザー HaarHaar
提出日時 2016-04-06 08:59:57
言語 Haskell
(9.10.1)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 414 bytes
コンパイル時間 3,963 ms
コンパイル使用メモリ 172,416 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-23 01:50:30
合計ジャッジ時間 2,419 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10
権限があれば一括ダウンロードができます
コンパイルメッセージ
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:6:1: warning: [GHC-94817] [-Wtabs]
    Tab character found here, and in 8 further locations.
    Suggested fix: Please use spaces instead.
  |
6 |         | isDigit x = calc (xs, res, op, num * 10 + (ord x - ord '0'))
  | ^^^^^^^^
[2 of 2] Linking a.out

ソースコード

diff #

import Data.List
import Data.Char
calc :: (String, Int, (Int->Int), Int) -> (String, Int, (Int->Int), Int)
calc ([], res, op, num) = ([], op num, op, num)
calc ((x:xs), res, op, num)
	| isDigit x = calc (xs, res, op, num * 10 + (ord x - ord '0'))
	| x == '+'	= calc (xs, res, ((op num) *), 0)
	| x == '*'	= calc (xs, res, ((op num) +), 0)

main = do
	exp <- getLine
	let (s,a,b,c) =	calc (exp, 0, id, 0)
	print $ a
0