結果

問題 No.135 とりあえず1次元の問題
ユーザー Michae'GonMichae'Gon
提出日時 2015-07-19 07:20:29
言語 Haskell
(9.10.1)
結果
AC  
実行時間 451 ms / 5,000 ms
コード長 238 bytes
コンパイル時間 11,098 ms
コンパイル使用メモリ 179,840 KB
実行使用メモリ 40,832 KB
最終ジャッジ日時 2025-01-03 06:12:38
合計ジャッジ時間 14,064 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 22
権限があれば一括ダウンロードができます
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.10.1/environments/default
[1 of 2] Compiling Main             ( Main.hs, Main.o )
Main.hs:2:51: warning: [GHC-63394] [-Wx-partial]
    In the use of ‘head’
    (imported from Data.List, but defined in GHC.Internal.List):
    "This is a partial function, it throws an error on empty lists. Use pattern matching, 'Data.List.uncons' or 'Data.Maybe.listToMaybe' instead. Consider refactoring to use "Data.List.NonEmpty"."
  |
2 | main = getLine >> getLine >>= print . solve . map head . group . sort . map read . words
  |                                                   ^^^^

[2 of 2] Linking a.out

ソースコード

diff #

import Data.List
main = getLine >> getLine >>= print . solve . map head . group . sort . map read . words

solve :: [Int] -> Int
solve [] = 0
solve (_ : []) = 0
solve (x : y : []) = y - x
solve (x : y : zs) = min (y - x) $ solve (y : zs)
0