結果

問題 No.118 門松列(2)
ユーザー aimyaimy
提出日時 2017-04-21 16:58:55
言語 Haskell
(9.8.2)
結果
AC  
実行時間 388 ms / 5,000 ms
コード長 430 bytes
コンパイル時間 2,201 ms
コンパイル使用メモリ 173,540 KB
実行使用メモリ 39,684 KB
最終ジャッジ日時 2024-07-20 05:07:39
合計ジャッジ時間 7,099 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
9,984 KB
testcase_01 AC 388 ms
39,684 KB
testcase_02 AC 349 ms
38,532 KB
testcase_03 AC 382 ms
38,664 KB
testcase_04 AC 377 ms
38,664 KB
testcase_05 AC 384 ms
39,548 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 362 ms
36,616 KB
testcase_10 AC 51 ms
13,804 KB
testcase_11 AC 72 ms
15,372 KB
testcase_12 AC 37 ms
12,672 KB
testcase_13 AC 21 ms
10,368 KB
testcase_14 AC 329 ms
37,516 KB
testcase_15 AC 9 ms
8,320 KB
testcase_16 AC 158 ms
21,132 KB
testcase_17 AC 23 ms
10,880 KB
testcase_18 AC 76 ms
15,888 KB
testcase_19 AC 135 ms
21,000 KB
testcase_20 AC 150 ms
20,232 KB
testcase_21 AC 253 ms
28,160 KB
testcase_22 AC 57 ms
13,936 KB
testcase_23 AC 220 ms
28,112 KB
testcase_24 AC 95 ms
15,112 KB
testcase_25 AC 139 ms
21,256 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 Data.List

q = 10^9+7

comb n r = iterate (scanl1 (+)) [1,1..] !! (n'-r') !! r'
 where [n',r'] = map fromIntegral [n,r]

main = getContents >>= print . kadomatsu . map read . words

kadomatsu :: [Integer] -> Integer
kadomatsu (n:as) = mod (comb n 3 - dup) q
 where
  dup = sum $ map comb' $ filter (>1) $ map (fromIntegral . length) $ group $ sort as
  comb' m
   | m==2 = n - m
   | otherwise = comb m 2 * (n-m) + comb m 3
0