結果

問題 No.462 6日知らずのコンピュータ
ユーザー Ysmr_RyYsmr_Ry
提出日時 2016-12-30 01:30:47
言語 Haskell
(9.8.2)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 518 bytes
コンパイル時間 820 ms
コンパイル使用メモリ 165,644 KB
実行使用メモリ 8,188 KB
最終ジャッジ日時 2023-08-22 01:32:04
合計ジャッジ時間 4,611 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
7,296 KB
testcase_01 AC 3 ms
7,244 KB
testcase_02 AC 3 ms
8,188 KB
testcase_03 AC 2 ms
7,788 KB
testcase_04 AC 2 ms
7,560 KB
testcase_05 AC 2 ms
7,528 KB
testcase_06 AC 2 ms
7,324 KB
testcase_07 AC 2 ms
7,536 KB
testcase_08 AC 2 ms
7,380 KB
testcase_09 AC 2 ms
7,296 KB
testcase_10 AC 2 ms
7,300 KB
testcase_11 AC 2 ms
7,344 KB
testcase_12 AC 2 ms
7,356 KB
testcase_13 AC 3 ms
7,460 KB
testcase_14 AC 2 ms
7,612 KB
testcase_15 AC 2 ms
7,404 KB
testcase_16 AC 2 ms
7,436 KB
testcase_17 AC 3 ms
7,640 KB
testcase_18 AC 2 ms
7,468 KB
testcase_19 AC 2 ms
7,368 KB
testcase_20 AC 3 ms
7,388 KB
testcase_21 AC 2 ms
7,476 KB
testcase_22 AC 3 ms
7,672 KB
testcase_23 AC 2 ms
7,624 KB
testcase_24 AC 2 ms
7,376 KB
testcase_25 AC 3 ms
7,952 KB
testcase_26 AC 3 ms
7,416 KB
testcase_27 AC 2 ms
7,464 KB
testcase_28 AC 2 ms
7,236 KB
testcase_29 AC 3 ms
7,440 KB
testcase_30 AC 2 ms
7,324 KB
testcase_31 AC 2 ms
7,508 KB
testcase_32 AC 2 ms
7,336 KB
testcase_33 AC 2 ms
7,460 KB
testcase_34 AC 3 ms
7,548 KB
testcase_35 AC 2 ms
7,384 KB
testcase_36 AC 2 ms
7,368 KB
testcase_37 AC 2 ms
7,468 KB
testcase_38 AC 3 ms
7,376 KB
testcase_39 AC 2 ms
7,440 KB
testcase_40 AC 2 ms
7,492 KB
testcase_41 AC 3 ms
7,660 KB
testcase_42 AC 2 ms
7,396 KB
testcase_43 AC 3 ms
7,488 KB
testcase_44 AC 2 ms
7,368 KB
testcase_45 AC 2 ms
7,312 KB
testcase_46 AC 3 ms
7,512 KB
testcase_47 AC 2 ms
7,608 KB
testcase_48 AC 3 ms
7,576 KB
testcase_49 AC 2 ms
7,356 KB
testcase_50 AC 2 ms
7,460 KB
testcase_51 AC 2 ms
7,284 KB
testcase_52 AC 3 ms
8,140 KB
testcase_53 AC 2 ms
7,400 KB
testcase_54 AC 2 ms
7,380 KB
testcase_55 AC 2 ms
7,436 KB
testcase_56 AC 2 ms
7,644 KB
testcase_57 AC 2 ms
7,672 KB
testcase_58 AC 2 ms
7,420 KB
testcase_59 AC 3 ms
7,732 KB
testcase_60 AC 3 ms
7,688 KB
testcase_61 AC 2 ms
7,272 KB
testcase_62 AC 2 ms
7,256 KB
testcase_63 AC 3 ms
7,476 KB
testcase_64 AC 2 ms
7,264 KB
testcase_65 AC 2 ms
7,468 KB
testcase_66 AC 3 ms
7,524 KB
testcase_67 AC 3 ms
7,916 KB
testcase_68 AC 3 ms
7,528 KB
testcase_69 AC 3 ms
7,760 KB
testcase_70 AC 3 ms
7,468 KB
testcase_71 AC 3 ms
7,740 KB
testcase_72 AC 2 ms
7,396 KB
testcase_73 AC 3 ms
7,492 KB
testcase_74 AC 2 ms
7,524 KB
testcase_75 AC 3 ms
8,024 KB
testcase_76 AC 2 ms
7,332 KB
testcase_77 AC 2 ms
7,548 KB
testcase_78 AC 3 ms
8,060 KB
testcase_79 AC 3 ms
7,304 KB
testcase_80 AC 2 ms
7,324 KB
testcase_81 AC 2 ms
7,280 KB
testcase_82 AC 2 ms
7,348 KB
testcase_83 AC 2 ms
7,376 KB
testcase_84 AC 2 ms
7,336 KB
testcase_85 AC 2 ms
7,252 KB
testcase_86 AC 2 ms
7,236 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.6.1/environments/default
[1 of 2] Compiling Main             ( Main.hs, Main.o )
[2 of 2] Linking a.out

ソースコード

diff #

import Control.Applicative ((<$>))
import Data.Bits
import Data.List

main :: IO ()
main = do
  [n, k] <- map read . words <$> getLine :: IO [Integer]
  as <- if (k /= 0)
    then map read . words <$> getLine :: IO [Integer]
    else return []

  let as' = nub $ sort (0:2^n-1:as)

  print $ (`mod`(10^9+7)) $ product $ zipWith f as' (tail as')

f :: Integer -> Integer -> Integer
f x y
  | x.&.y == x = fact $ fromIntegral $ popCount $ y-x
  | otherwise  = 0
  where
    fact 0 = 1
    fact n | n > 0 = n * fact (n-1)
0