結果

問題 No.347 微分と積分
コンテスト
ユーザー Haar
提出日時 2016-04-16 23:35:18
言語 Haskell
(9.14.1)
コンパイル:
ghc -rtsopts -with-rtsopts=-K1G -o a.out -O2 _filename_
実行:
./a.out
結果
AC  
実行時間 3 ms / 5,000 ms
コード長 445 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,455 ms
コンパイル使用メモリ 200,064 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2026-04-20 06:52:05
合計ジャッジ時間 3,181 ms
ジャッジサーバーID
(参考情報)
judge2_1 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.14.1/environments/default
[1 of 2] Compiling Main             ( Main.hs, Main.o )
Main.hs:8:1: warning: [GHC-94817] [-Wtabs]
    Tab character found here, and in six further locations.
    Suggested fix: Please use spaces instead.
  |
8 |         | n == -1.0 = \x -> log x
  | ^^^^^^^^

[2 of 2] Linking a.out

ソースコード

diff #
raw source code

import Control.Applicative

differential :: Float -> (Float -> Float)
differential n = \x -> n*x**(n-1)

integral :: Float -> (Float -> Float)
integral n
	| n == -1.0 = \x -> log x
	| otherwise = \x -> x**(n+1)/(n+1)

main = do
	n <- getLine
	b <- getLine >>= return . (read::String->Float)
	a <- getLine >>= return . map (read::String->Float) . words
	print $ sum $ (map differential a) <*> return b
	print $ sum $ (map integral a) <*> return b
0