結果

問題 No.406 鴨等間隔の法則
ユーザー HaarHaar
提出日時 2016-08-31 19:46:25
言語 Haskell
(9.8.2)
結果
AC  
実行時間 446 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 2,106 ms
コンパイル使用メモリ 175,232 KB
実行使用メモリ 44,800 KB
最終ジャッジ日時 2024-07-07 11:41:52
合計ジャッジ時間 8,354 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
22,400 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 249 ms
35,456 KB
testcase_05 AC 90 ms
21,248 KB
testcase_06 AC 90 ms
21,376 KB
testcase_07 AC 96 ms
21,120 KB
testcase_08 AC 250 ms
35,456 KB
testcase_09 AC 287 ms
41,984 KB
testcase_10 AC 108 ms
22,400 KB
testcase_11 AC 218 ms
35,456 KB
testcase_12 AC 149 ms
29,312 KB
testcase_13 AC 143 ms
28,160 KB
testcase_14 AC 345 ms
37,760 KB
testcase_15 AC 16 ms
10,112 KB
testcase_16 AC 21 ms
10,880 KB
testcase_17 AC 12 ms
9,216 KB
testcase_18 AC 22 ms
11,264 KB
testcase_19 AC 31 ms
11,904 KB
testcase_20 AC 46 ms
13,824 KB
testcase_21 AC 36 ms
13,696 KB
testcase_22 AC 84 ms
18,048 KB
testcase_23 AC 169 ms
31,360 KB
testcase_24 AC 302 ms
36,608 KB
testcase_25 AC 291 ms
43,008 KB
testcase_26 AC 446 ms
44,800 KB
testcase_27 AC 277 ms
42,496 KB
testcase_28 AC 275 ms
41,344 KB
testcase_29 AC 445 ms
44,672 KB
testcase_30 AC 429 ms
42,624 KB
testcase_31 AC 269 ms
38,784 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:10:1: warning: [GHC-94817] [-Wtabs]
    Tab character found here, and in 9 further locations.
    Suggested fix: Please use spaces instead.
   |
10 |            func (x:y:xs) = (y-x):(func(y:xs))
   | ^^^^^^^^
[2 of 2] Linking a.out

ソースコード

diff #

import Control.Applicative
import Data.List

main :: IO()
main = do
     getLine
     x <- sort . map (read::String->Int) . words <$> getLine
     putStrLn $ check $ func x
     where
	   func (x:y:xs) = (y-x):(func(y:xs))
	   func (x:[]) = []
	   check (x:y:xs)
	   	 | x == 0 = "NO"
		 | x == y = check (y:xs)
		 | otherwise = "NO"
	   check (x:[]) = "YES"
0