結果

問題 No.806 木を道に
ユーザー iwotiwot
提出日時 2020-05-20 17:26:15
言語 Haskell
(9.8.2)
結果
AC  
実行時間 830 ms / 2,000 ms
コード長 306 bytes
コンパイル時間 1,857 ms
コンパイル使用メモリ 171,904 KB
実行使用メモリ 85,632 KB
最終ジャッジ日時 2024-10-01 23:40:23
合計ジャッジ時間 11,365 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 144 ms
25,088 KB
testcase_11 AC 124 ms
23,168 KB
testcase_12 AC 679 ms
70,144 KB
testcase_13 AC 458 ms
57,856 KB
testcase_14 AC 635 ms
68,096 KB
testcase_15 AC 683 ms
71,424 KB
testcase_16 AC 206 ms
31,488 KB
testcase_17 AC 578 ms
65,152 KB
testcase_18 AC 47 ms
13,952 KB
testcase_19 AC 148 ms
26,112 KB
testcase_20 AC 562 ms
64,256 KB
testcase_21 AC 295 ms
37,632 KB
testcase_22 AC 823 ms
85,632 KB
testcase_23 AC 830 ms
85,632 KB
testcase_24 AC 258 ms
49,664 KB
testcase_25 AC 396 ms
67,328 KB
testcase_26 AC 170 ms
30,336 KB
testcase_27 AC 642 ms
84,480 KB
testcase_28 AC 15 ms
9,344 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 #

import Control.Monad
import Data.List

main = do
    n <- (read :: String -> Int) <$> getLine
    s <- replicateM (n-1) ((map read :: [String] -> [Int]) . words <$> getLine)
    print (solve s)

solve :: [[Int]] -> Int
solve xs =
    foldl (\n v -> (max (length v - 2) 0) + n) 0 (group $ sort $ concat xs)
0