結果

問題 No.406 鴨等間隔の法則
ユーザー lvs7klvs7k
提出日時 2018-09-12 22:31:37
言語 Haskell
(9.8.2)
結果
AC  
実行時間 498 ms / 2,000 ms
コード長 346 bytes
コンパイル時間 1,831 ms
コンパイル使用メモリ 174,976 KB
実行使用メモリ 44,544 KB
最終ジャッジ日時 2024-07-07 12:30:11
合計ジャッジ時間 8,765 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
22,016 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 267 ms
35,456 KB
testcase_05 AC 96 ms
21,120 KB
testcase_06 AC 105 ms
21,120 KB
testcase_07 AC 109 ms
20,992 KB
testcase_08 AC 271 ms
35,328 KB
testcase_09 AC 302 ms
42,368 KB
testcase_10 AC 118 ms
22,016 KB
testcase_11 AC 240 ms
35,328 KB
testcase_12 AC 168 ms
29,312 KB
testcase_13 AC 152 ms
27,392 KB
testcase_14 AC 376 ms
38,528 KB
testcase_15 AC 19 ms
9,984 KB
testcase_16 AC 23 ms
10,496 KB
testcase_17 AC 13 ms
8,960 KB
testcase_18 AC 24 ms
11,008 KB
testcase_19 AC 35 ms
11,776 KB
testcase_20 AC 50 ms
13,696 KB
testcase_21 AC 40 ms
13,696 KB
testcase_22 AC 91 ms
18,176 KB
testcase_23 AC 175 ms
30,592 KB
testcase_24 AC 314 ms
36,352 KB
testcase_25 AC 320 ms
42,624 KB
testcase_26 AC 461 ms
44,544 KB
testcase_27 AC 296 ms
42,368 KB
testcase_28 AC 286 ms
41,600 KB
testcase_29 AC 498 ms
44,544 KB
testcase_30 AC 443 ms
42,496 KB
testcase_31 AC 284 ms
38,528 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 )
[2 of 2] Linking a.out

ソースコード

diff #

module Main where

import Control.Monad
import Data.List (sort)

main :: IO ()
main = do
    getLine
    xs <- sort . fmap read . words <$> getLine :: IO [Int]
    let bs@(b:_) = zip xs (drop 1 xs)
    let space = uncurry (-) b
    if (space /= 0) && (all (== space) $ fmap (uncurry (-)) bs)
        then putStrLn "YES"
        else putStrLn "NO"
0