結果

問題 No.185 和風
ユーザー mazeppa1108mazeppa1108
提出日時 2015-06-24 17:58:35
言語 Haskell
(9.8.2)
結果
WA  
実行時間 -
コード長 413 bytes
コンパイル時間 1,856 ms
コンパイル使用メモリ 165,972 KB
実行使用メモリ 11,644 KB
最終ジャッジ日時 2023-09-22 00:33:35
合計ジャッジ時間 1,546 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
11,092 KB
testcase_01 AC 12 ms
11,644 KB
testcase_02 AC 3 ms
7,864 KB
testcase_03 AC 4 ms
7,808 KB
testcase_04 AC 12 ms
11,544 KB
testcase_05 WA -
testcase_06 AC 12 ms
11,300 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 Data.List
import Control.Applicative
import Control.Monad

main = do
     n <- readLn
     c <- (map . map) (read :: String -> Int) . map words <$> replicateM n getLine
     let c' = map (\x -> x !! 1 - x !! 0) c
         s  = (head c) !! 1 - (head c) !! 0 
     print $ if and $ map (== s) c'
               then if s < 0
                       then -1
                       else s
               else -1
0