結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,944 KB
testcase_01 AC 3 ms
7,044 KB
testcase_02 AC 2 ms
7,084 KB
testcase_03 AC 2 ms
7,092 KB
testcase_04 AC 2 ms
7,140 KB
testcase_05 AC 3 ms
7,012 KB
testcase_06 AC 3 ms
7,068 KB
testcase_07 AC 2 ms
7,164 KB
testcase_08 AC 3 ms
7,120 KB
testcase_09 AC 3 ms
7,120 KB
testcase_10 AC 3 ms
7,232 KB
testcase_11 AC 2 ms
7,108 KB
testcase_12 AC 3 ms
7,132 KB
testcase_13 AC 3 ms
7,256 KB
testcase_14 AC 2 ms
7,256 KB
testcase_15 AC 3 ms
7,220 KB
testcase_16 AC 2 ms
7,212 KB
testcase_17 AC 3 ms
7,220 KB
testcase_18 AC 2 ms
7,372 KB
testcase_19 AC 3 ms
7,400 KB
testcase_20 AC 3 ms
7,476 KB
testcase_21 AC 3 ms
7,380 KB
testcase_22 AC 3 ms
7,272 KB
testcase_23 AC 2 ms
7,408 KB
testcase_24 AC 3 ms
7,416 KB
testcase_25 AC 3 ms
7,440 KB
testcase_26 AC 2 ms
7,444 KB
testcase_27 AC 3 ms
7,428 KB
testcase_28 AC 3 ms
7,608 KB
testcase_29 AC 3 ms
7,520 KB
testcase_30 WA -
testcase_31 AC 3 ms
6,868 KB
testcase_32 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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

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