結果

問題 No.49 算数の宿題
ユーザー HaarHaar
提出日時 2016-04-06 08:59:57
言語 Haskell
(9.8.2)
結果
AC  
実行時間 3 ms / 5,000 ms
コード長 414 bytes
コンパイル時間 859 ms
コンパイル使用メモリ 163,144 KB
実行使用メモリ 6,656 KB
最終ジャッジ日時 2023-08-24 17:30:56
合計ジャッジ時間 1,697 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,588 KB
testcase_01 AC 3 ms
6,536 KB
testcase_02 AC 2 ms
6,600 KB
testcase_03 AC 2 ms
6,560 KB
testcase_04 AC 3 ms
6,536 KB
testcase_05 AC 3 ms
6,592 KB
testcase_06 AC 3 ms
6,504 KB
testcase_07 AC 2 ms
6,656 KB
testcase_08 AC 2 ms
6,576 KB
testcase_09 AC 2 ms
6,620 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.6.1/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