結果
| 問題 |
No.420 mod2漸化式
|
| コンテスト | |
| ユーザー |
はむ吉🐹
|
| 提出日時 | 2016-09-10 12:17:35 |
| 言語 | Haskell (9.10.1) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 451 bytes |
| コンパイル時間 | 9,941 ms |
| コンパイル使用メモリ | 172,544 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-12-24 11:29:15 |
| 合計ジャッジ時間 | 8,149 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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
ソースコード
import Text.Printf (printf)
binom :: Integral a => a -> a -> a
binom n k = product [k + 1 .. n] `div` product [1 .. n - k]
computeNum :: Integral a => a -> a
computeNum x = if x < 0 || x > 31 then 0 else binom 31 x
computeSum :: Integral a => a -> a
computeSum x
| x <= 0 || x > 31 = 0
| otherwise = (2 ^ 31 - 1) * binom 30 (x - 1)
main :: IO ()
main = do
x <- readLn :: IO Integer
printf "%Ld %Ld\n" (computeNum x) (computeSum x)
はむ吉🐹