結果

問題 No.546 オンリー・ワン
ユーザー aimyaimy
提出日時 2017-07-15 15:59:56
言語 Haskell
(9.8.2)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 676 bytes
コンパイル時間 2,324 ms
コンパイル使用メモリ 173,952 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-16 21:48:19
合計ジャッジ時間 2,542 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 3 ms
6,944 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 #

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]
0