結果
| 問題 |
No.420 mod2漸化式
|
| コンテスト | |
| ユーザー |
penguinshunya
|
| 提出日時 | 2016-10-23 22:49:31 |
| 言語 | Haskell (9.10.1) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 304 bytes |
| コンパイル時間 | 9,646 ms |
| コンパイル使用メモリ | 173,440 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-12-24 13:05:38 |
| 合計ジャッジ時間 | 7,268 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 35 |
コンパイルメッセージ
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
ソースコード
module Main where
import Control.Applicative
main :: IO ()
main = do
x <- readLn
if x <= 31 then do
let c = product [(32-x)..31] `div` product [1..x]
s = sum [2 ^ n | n <- [0..30]] * c * x `div` 31
putStrLn $ unwords [show c, show s]
else
putStrLn "0 0"
penguinshunya