結果

問題 No.627 ランダムウォークの軌跡
ユーザー はむ吉🐹はむ吉🐹
提出日時 2018-01-05 22:20:53
言語 Haskell
(9.8.2)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 324 bytes
コンパイル時間 1,064 ms
コンパイル使用メモリ 164,084 KB
実行使用メモリ 7,668 KB
最終ジャッジ日時 2023-08-24 20:53:01
合計ジャッジ時間 1,984 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
7,048 KB
testcase_01 AC 2 ms
6,908 KB
testcase_02 AC 3 ms
7,052 KB
testcase_03 AC 2 ms
7,016 KB
testcase_04 AC 3 ms
7,096 KB
testcase_05 AC 3 ms
7,060 KB
testcase_06 AC 2 ms
7,140 KB
testcase_07 AC 3 ms
7,092 KB
testcase_08 AC 3 ms
7,140 KB
testcase_09 AC 3 ms
7,104 KB
testcase_10 AC 2 ms
7,232 KB
testcase_11 AC 3 ms
7,140 KB
testcase_12 AC 3 ms
7,320 KB
testcase_13 AC 3 ms
7,252 KB
testcase_14 AC 2 ms
7,292 KB
testcase_15 AC 3 ms
7,288 KB
testcase_16 AC 3 ms
7,240 KB
testcase_17 AC 3 ms
7,364 KB
testcase_18 AC 3 ms
7,372 KB
testcase_19 AC 3 ms
7,380 KB
testcase_20 AC 2 ms
7,428 KB
testcase_21 AC 3 ms
7,316 KB
testcase_22 AC 3 ms
7,472 KB
testcase_23 AC 3 ms
7,340 KB
testcase_24 AC 3 ms
7,356 KB
testcase_25 AC 3 ms
7,404 KB
testcase_26 AC 3 ms
7,428 KB
testcase_27 AC 3 ms
7,528 KB
testcase_28 AC 3 ms
7,668 KB
testcase_29 AC 3 ms
7,584 KB
testcase_30 AC 3 ms
6,900 KB
testcase_31 AC 2 ms
6,820 KB
testcase_32 AC 3 ms
6,928 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.6.1/environments/default
[1 of 2] Compiling Main             ( Main.hs, Main.o )
[2 of 2] Linking a.out

ソースコード

diff #

import Control.Monad (replicateM)

diff :: Num a => [a] -> [a]
diff xs = zipWith (-) (tail xs) (init xs)

judge :: Integral a => [a] -> Bool
judge = all (== 1) . fmap abs . diff . (0 :)

main :: IO ()
main = do
    t <- readLn :: IO Int
    xs <- replicateM t readLn :: IO [Int]
    putStrLn $ if judge xs then "T" else "F"
0