結果

問題 No.406 鴨等間隔の法則
ユーザー JohnnyJohnny
提出日時 2017-02-11 18:49:29
言語 Haskell
(9.8.2)
結果
AC  
実行時間 502 ms / 2,000 ms
コード長 293 bytes
コンパイル時間 1,946 ms
コンパイル使用メモリ 177,792 KB
実行使用メモリ 44,672 KB
最終ジャッジ日時 2024-07-07 11:58:31
合計ジャッジ時間 9,365 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
22,016 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 272 ms
35,456 KB
testcase_05 AC 103 ms
20,864 KB
testcase_06 AC 104 ms
20,992 KB
testcase_07 AC 107 ms
20,864 KB
testcase_08 AC 276 ms
35,456 KB
testcase_09 AC 315 ms
41,984 KB
testcase_10 AC 124 ms
21,888 KB
testcase_11 AC 252 ms
35,456 KB
testcase_12 AC 171 ms
29,184 KB
testcase_13 AC 161 ms
27,648 KB
testcase_14 AC 388 ms
37,248 KB
testcase_15 AC 20 ms
10,112 KB
testcase_16 AC 26 ms
10,752 KB
testcase_17 AC 13 ms
9,088 KB
testcase_18 AC 28 ms
10,880 KB
testcase_19 AC 41 ms
11,776 KB
testcase_20 AC 58 ms
13,696 KB
testcase_21 AC 43 ms
13,696 KB
testcase_22 AC 110 ms
18,304 KB
testcase_23 AC 204 ms
31,232 KB
testcase_24 AC 354 ms
37,504 KB
testcase_25 AC 319 ms
43,008 KB
testcase_26 AC 499 ms
44,672 KB
testcase_27 AC 307 ms
42,496 KB
testcase_28 AC 309 ms
41,216 KB
testcase_29 AC 502 ms
44,544 KB
testcase_30 AC 487 ms
42,368 KB
testcase_31 AC 300 ms
38,656 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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:6:1: warning: [GHC-94817] [-Wtabs]
    Tab character found here, and in 9 further locations.
    Suggested fix: Please use spaces instead.
  |
6 |         where
  | ^^^^^^^^
[2 of 2] Linking a.out

ソースコード

diff #

import Control.Applicative
import Data.List

f 2 _ = "YES"
f n (x:xs) = if ((x2 - x1) == (x3 - x2)) && ((x2 - x1) /= 0) then f (n-1) xs else "NO"
	where
		x1 = x
		x2 = xs !! 0
		x3 = xs !! 1

main = do
  	n <- getLine
  	xs <- (map read . words) <$> getLine
  	putStrLn $ f (read n) (sort xs)
0