結果
| 問題 | No.420 mod2漸化式 |
| コンテスト | |
| ユーザー |
penguinshunya
|
| 提出日時 | 2016-10-23 22:44:40 |
| 言語 | Haskell (9.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 237 bytes |
| 記録 | |
| コンパイル時間 | 1,051 ms |
| コンパイル使用メモリ | 197,376 KB |
| 実行使用メモリ | 22,772 KB |
| 最終ジャッジ日時 | 2026-05-17 22:39:47 |
| 合計ジャッジ時間 | 6,536 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 33 TLE * 2 |
コンパイルメッセージ
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
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]
penguinshunya