結果
| 問題 | No.420 mod2漸化式 |
| コンテスト | |
| ユーザー |
penguinshunya
|
| 提出日時 | 2016-10-23 22:49:31 |
| 言語 | Haskell (9.14.1) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 1,000 ms |
| コード長 | 304 bytes |
| 記録 | |
| コンパイル時間 | 2,704 ms |
| コンパイル使用メモリ | 195,584 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-05-30 09:01:18 |
| 合計ジャッジ時間 | 4,660 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 35 |
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.14.1/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