結果
問題 | No.222 引き算と足し算 |
ユーザー |
![]() |
提出日時 | 2016-05-18 23:21:10 |
言語 | Haskell (9.10.1) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 414 bytes |
コンパイル時間 | 3,720 ms |
コンパイル使用メモリ | 172,800 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-15 22:10:56 |
合計ジャッジ時間 | 2,852 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 31 |
コンパイルメッセージ
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:4:37: warning: [GHC-47082] [-Woperator-whitespace-ext-conflict] The prefix use of a ‘$’ would denote an untyped splice were the TemplateHaskell extension enabled. Suggested fix: Add whitespace after the ‘$’. | 4 | let ev f st = f * (read . reverse $st) | ^ [2 of 2] Linking a.out
ソースコード
main::IO() main = do xs <-getLine let ev f st = f * (read . reverse $st) exe _ (f,st)[] = [ev f st] exe ff (f,st)(x:xs) | x `elem` ['0'..'9'] = exe True (f,x:st) xs | ff = ev f st : exe False ((-1)*sgn x,[]) xs | otherwise = exe False ( f *sgn x,[]) xs where sgn c = if c=='+' then 1 else (-1) print . sum $ exe False (1,[]) xs