結果
問題 |
No.462 6日知らずのコンピュータ
|
ユーザー |
|
提出日時 | 2017-04-15 12:42:06 |
言語 | Haskell (9.10.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 685 bytes |
コンパイル時間 | 9,027 ms |
コンパイル使用メモリ | 170,752 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-18 17:54:30 |
合計ジャッジ時間 | 11,218 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 40 WA * 44 |
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.8.2/environments/default [1 of 2] Compiling Main ( Main.hs, Main.o ) Main.hs:23:34: warning: [GHC-63394] [-Wx-partial] In the use of ‘head’ (imported from Data.List, but defined in GHC.List): "This is a partial function, it throws an error on empty lists. Use pattern matching or Data.List.uncons instead. Consider refactoring to use Data.List.NonEmpty." | 23 | | (checkBit as $ head as) == True = countGroup (n + 1) $ last as | ^^^^ [2 of 2] Linking a.out
ソースコード
import Data.Int import Data.List import Data.Bits factorial 0 = 1 factorial x = factorial (x-1) * x checkBit :: [Int64] -> Int64 -> Bool checkBit [] x = True checkBit (a:as) x = checkBit as a && x == x .&. a countGroup n x = factorial (n - popCount x) main = do str1 <- getLine let [n, k] = map read $ words str1 :: [Int] str2 <- if k /= 0 then getLine else return ("") let as = sort $ map read $ words str2 :: [Int64] result | k == 0 = factorial n | (checkBit as $ head as) == True = countGroup (n + 1) $ last as | otherwise = 0 print result