結果
問題 | No.118 門松列(2) |
ユーザー | aimy |
提出日時 | 2017-04-21 16:39:02 |
言語 | Haskell (9.8.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 462 bytes |
コンパイル時間 | 2,694 ms |
コンパイル使用メモリ | 172,160 KB |
実行使用メモリ | 40,580 KB |
最終ジャッジ日時 | 2024-07-20 05:05:49 |
合計ジャッジ時間 | 7,623 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 358 ms
40,580 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 343 ms
39,560 KB |
testcase_10 | WA | - |
testcase_11 | AC | 73 ms
15,116 KB |
testcase_12 | AC | 37 ms
13,184 KB |
testcase_13 | AC | 21 ms
10,240 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 22 ms
10,752 KB |
testcase_18 | WA | - |
testcase_19 | AC | 144 ms
20,568 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 227 ms
28,296 KB |
testcase_24 | WA | - |
testcase_25 | AC | 128 ms
21,768 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
ソースコード
import Data.List q = 10^9+7 comb n r = iterate (scanl1 (\x y -> mod (x+y) q)) [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) q - mod dup q where dup = sum $ map comb' $ filter (>1) $ map (fromIntegral . length) $ group $ sort as comb' m | m==2 = n - m | otherwise = mod (comb m 2 * (n-m) + comb m 3) q