結果

問題 No.420 mod2漸化式
ユーザー alpha_virginisalpha_virginis
提出日時 2016-09-09 23:02:44
言語 Haskell
(9.8.2)
結果
TLE  
実行時間 -
コード長 1,100 bytes
コンパイル時間 11,057 ms
コンパイル使用メモリ 181,796 KB
実行使用メモリ 18,432 KB
最終ジャッジ日時 2024-11-16 10:52:59
合計ジャッジ時間 43,080 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
13,184 KB
testcase_01 TLE -
testcase_02 AC 1 ms
13,184 KB
testcase_03 AC 1 ms
10,496 KB
testcase_04 AC 2 ms
10,496 KB
testcase_05 AC 6 ms
14,884 KB
testcase_06 AC 1 ms
10,496 KB
testcase_07 AC 63 ms
16,000 KB
testcase_08 AC 206 ms
13,184 KB
testcase_09 AC 612 ms
16,000 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 624 ms
7,936 KB
testcase_25 AC 216 ms
8,192 KB
testcase_26 AC 62 ms
8,064 KB
testcase_27 AC 17 ms
7,936 KB
testcase_28 AC 7 ms
8,064 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 1 ms
5,248 KB
testcase_33 AC 1 ms
5,248 KB
testcase_34 AC 1 ms
5,248 KB
testcase_35 AC 1 ms
5,248 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 #

{-# LANGUAGE OverloadedStrings #-}

import qualified Data.ByteString.Char8 as C
import Data.Char
import Text.Printf

nCr :: Integer -> Integer -> Integer
nCr 0 _ = 1
nCr _ 0 = 1
nCr n r
  | n == 0 = 1
  | r == 0 = 1
  | n == r = 1
  | otherwise = nCr (n - 1) (r' - 1) + nCr (n - 1) r'
  where r' = min r $ n - r
  
solve :: Int -> (Integer, Integer)
solve n
  | n < 32 = (x, y)
  | otherwise = (0, 0)
  where n' = fromIntegral n
        x  = nCr 31 n'
        y  = (2 ^ (31 :: Integer) - 1) * x * n' `div` 31

main :: IO ()
main = do
  ss <- C.getLine
  let (x, ss2) = nextInt ss
  let (a, b) = solve x
  printf "%d %d\n" a b

nextInt :: C.ByteString -> (Int, C.ByteString)
nextInt ss
  | isDigit x || x == '-' = nextInt2 0 ss
  | otherwise             = nextInt $ C.tail ss
  where x = C.head ss
  
nextInt2 :: Int -> C.ByteString -> (Int, C.ByteString)
nextInt2 n ss
  | C.null ss = (n, ss)
  | y == '-'  = (-z,zs)
  | isDigit y = nextInt2 (n * 10 + (digitToInt y)) ys
  | otherwise = (n, ys)
  where y  = C.head ss
        ys = C.tail ss
        (z,zs) = nextInt2 0 ys
                           
0