Accepted
[1 of 1] Compiling Main ( foo.hs, /tmp/Main.o ) Linking code ...
正在同步测试数据,请稍后 [Hydro](https://hydro.ac)提供评测服务
代码
module Main where
import Data.Char
main = print . count . show . calc . words =<< getLine
where
calc :: [String] -> Integer
calc [a, b] = (read a) ^ (read b)
count :: String -> Int
count = sum . map orz
orz :: Char -> Int
orz ch = ord ch - 48
信息
- 递交者
- 类型
- 递交
- 题目
- 观铃题
- 语言
- Haskell
- 递交时间
- 2018-07-24 14:30:55
- 评测时间
- 2021-10-21 22:14:40
- 评测机
- 分数
- 100
- 总耗时
- 423ms
- 峰值内存
- 2.824 MiB