結果

問題 No.406 鴨等間隔の法則
ユーザー pekempeypekempey
提出日時 2016-08-11 03:45:05
言語 Haskell
(9.8.2)
結果
AC  
実行時間 528 ms / 2,000 ms
コード長 204 bytes
コンパイル時間 3,007 ms
コンパイル使用メモリ 172,672 KB
実行使用メモリ 44,544 KB
最終ジャッジ日時 2024-07-07 11:36:57
合計ジャッジ時間 11,858 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 175 ms
22,912 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 446 ms
39,424 KB
testcase_05 AC 136 ms
20,864 KB
testcase_06 AC 147 ms
21,120 KB
testcase_07 AC 148 ms
20,992 KB
testcase_08 AC 432 ms
38,400 KB
testcase_09 AC 505 ms
42,496 KB
testcase_10 AC 187 ms
23,040 KB
testcase_11 AC 378 ms
37,376 KB
testcase_12 AC 247 ms
32,128 KB
testcase_13 AC 220 ms
31,232 KB
testcase_14 AC 394 ms
38,400 KB
testcase_15 AC 18 ms
9,984 KB
testcase_16 AC 30 ms
10,752 KB
testcase_17 AC 15 ms
9,088 KB
testcase_18 AC 26 ms
11,008 KB
testcase_19 AC 38 ms
11,648 KB
testcase_20 AC 52 ms
13,568 KB
testcase_21 AC 55 ms
13,824 KB
testcase_22 AC 101 ms
19,584 KB
testcase_23 AC 261 ms
33,408 KB
testcase_24 AC 344 ms
36,480 KB
testcase_25 AC 511 ms
43,648 KB
testcase_26 AC 513 ms
44,544 KB
testcase_27 AC 327 ms
42,496 KB
testcase_28 AC 330 ms
41,472 KB
testcase_29 AC 528 ms
44,544 KB
testcase_30 AC 513 ms
42,496 KB
testcase_31 AC 470 ms
39,552 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:30: warning: [GHC-63394] [-Wx-partial]
    In the use of ‘tail’
    (imported from Data.List, but defined in GHC.List):
    "This is a partial function, it throws an error on empty lists. Replace it with drop 1, or use pattern matching or Data.List.uncons instead. Consider refactoring to use Data.List.NonEmpty."
  |
6 |     where d = zipWith (-) x (tail x)
  |                              ^^^^
[2 of 2] Linking a.out

ソースコード

diff #

import Data.List

main = getLine >> getLine >>= putStrLn . solve . sort . map read . words

solve x = if maximum d == minimum d && maximum d /= 0 then "YES" else "NO"
    where d = zipWith (-) x (tail x)
0