結果

問題 No.420 mod2漸化式
ユーザー penguinshunya
提出日時 2016-10-23 22:44:40
言語 Haskell
(9.10.1)
結果
TLE  
実行時間 -
コード長 237 bytes
コンパイル時間 2,913 ms
コンパイル使用メモリ 174,720 KB
実行使用メモリ 19,844 KB
最終ジャッジ日時 2024-11-24 02:08:21
合計ジャッジ時間 8,415 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 33 TLE * 2
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 #

module Main where

import Control.Applicative

main :: IO ()
main = do
    n <- readLn
    let c = product [(32-n)..31] `div` product [1..n]
        s = sum [2 ^ x | x <- [0..30]] * c * n `div` 31
    putStrLn $ unwords [show c, show s]
0