結果

問題 No.1109 調の判定
ユーザー aoshimaaoshima
提出日時 2020-07-17 10:05:22
言語 Haskell
(9.8.2)
結果
WA  
実行時間 -
コード長 858 bytes
コンパイル時間 6,601 ms
コンパイル使用メモリ 180,308 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 19:12:27
合計ジャッジ時間 8,239 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 AC 1 ms
5,376 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 1 ms
5,376 KB
testcase_37 AC 1 ms
5,376 KB
testcase_38 AC 1 ms
5,376 KB
testcase_39 AC 1 ms
5,376 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 1 ms
5,376 KB
testcase_42 WA -
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 1 ms
5,376 KB
testcase_45 AC 1 ms
5,376 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 )

Main.hs:24:15: warning: [GHC-63394] [-Wx-partial]
    In the use of ‘head’
    (imported from Prelude, 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."
   |
24 |     ys = map (head Arrow.&&& ok xs) tables
   |               ^^^^
[2 of 2] Linking a.out

ソースコード

diff #

{-# OPTIONS_GHC -O2 #-}
import qualified Control.Arrow         as Arrow
import qualified Data.List             as List
import qualified Data.ByteString.Char8 as BSC8
import qualified Data.Maybe            as Maybe

readInts :: IO [Int]
readInts = map (fst . Maybe.fromJust . BSC8.readInt) . BSC8.words <$> BSC8.getLine

main :: IO ()
main = do
  n <- readLn :: IO Int
  xs <- readInts
  if n < 3 || n > 7
    then print (-1)
    else print $ solve xs

solve :: [Int] -> Int
solve xs = if l > 1 || l == 0
            then -1
            else g $ filter snd ys
  where
    tables = map major xs
    ys = map (head Arrow.&&& ok xs) tables
    l = length $ filter snd ys
    g [(a, b)] = a

ok :: [Int] -> [Int] -> Bool
ok [] _ = True
ok (x:xs) ys = (List.elem x ys) && (ok xs ys)

major :: Int -> [Int]
major n = [(n + x) `mod` 12 | x <- [0, 2, 4, 5, 7, 9, 11]]
0