結果
問題 | No.546 オンリー・ワン |
ユーザー | aimy |
提出日時 | 2017-07-15 15:59:56 |
言語 | Haskell (9.8.2) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 676 bytes |
コンパイル時間 | 6,585 ms |
コンパイル使用メモリ | 172,544 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-08 02:28:05 |
合計ジャッジ時間 | 7,380 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 3 ms
6,816 KB |
testcase_09 | AC | 3 ms
6,820 KB |
testcase_10 | AC | 3 ms
6,820 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
ソースコード
comb :: (Eq t, Num t) => t -> [a] -> [[a]] comb n xs = go n xs [] [] where go 0 _ ys zs = reverse ys : zs go _ [] _ zs = zs go n (x:xs) ys zs = go (n-1) xs (x:ys) (go n xs ys zs) lcmList :: Integral a => [a] -> a lcmList [x] = x lcmList (x1:x2:xs) = lcmList (lcm x1 x2 : xs) main = do [n,l,h] <- map read . words <$> getLine cs <- map read . words <$> getLine print (onlyOne n l h cs) onlyOne :: Integral t => t -> t -> t -> [t] -> t onlyOne n l h cs = sum $ zipWith (*) as (map (sum . map (divs . lcmList)) ccs) where divs x = div h x - div l x + (if mod l x == 0 then 1 else 0) ccs = map (flip comb cs) [1..n] as = zipWith ($) (cycle [id,negate]) [1..n]