結果

問題 No.279 木の数え上げ
ユーザー HaarHaar
提出日時 2016-03-16 09:15:38
言語 Haskell
(9.8.2)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 194 bytes
コンパイル時間 6,652 ms
コンパイル使用メモリ 172,160 KB
実行使用メモリ 59,136 KB
最終ジャッジ日時 2024-10-14 15:26:05
合計ジャッジ時間 8,855 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 1 ms
6,816 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 175 ms
56,832 KB
testcase_11 AC 30 ms
18,176 KB
testcase_12 AC 119 ms
48,640 KB
testcase_13 AC 15 ms
13,184 KB
testcase_14 AC 186 ms
59,136 KB
testcase_15 AC 151 ms
53,760 KB
testcase_16 AC 143 ms
52,864 KB
testcase_17 AC 175 ms
56,960 KB
testcase_18 AC 83 ms
32,384 KB
testcase_19 AC 171 ms
55,936 KB
testcase_20 AC 187 ms
57,856 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:5:1: warning: [GHC-94817] [-Wtabs]
    Tab character found here, and in one further location.
    Suggested fix: Please use spaces instead.
  |
5 |         [t,r,e] <- getLine >>= return . (\xs -> map (count xs) "tre")
  | ^^^^^^^^
[2 of 2] Linking a.out

ソースコード

diff #

count :: Eq a => [a] -> a -> Integer
count xs c = sum $ map (\x -> if x==c then 1 else 0) xs

main = do
	[t,r,e] <- getLine >>= return . (\xs -> map (count xs) "tre")
	print$minimum[t,r,e`div`2]
0