結果
問題 | No.657 テトラナッチ数列 Easy |
ユーザー | CreativeGP1 |
提出日時 | 2018-03-06 15:03:01 |
言語 | Haskell (9.8.2) |
結果 |
RE
|
実行時間 | - |
コード長 | 363 bytes |
コンパイル時間 | 8,327 ms |
コンパイル使用メモリ | 176,008 KB |
実行使用メモリ | 18,336 KB |
最終ジャッジ日時 | 2024-09-18 23:15:29 |
合計ジャッジ時間 | 11,496 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
コンパイルメッセージ
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 Control.Applicative string2int str = read str :: Int tetra n | n == 1 || n == 2 || n == 3 = 0 | n == 4 = 1 | otherwise = tetra (n-1) + tetra (n-2) + tetra (n-3) + tetra (n-4) ans n = do ss <- getLine let n = string2int ss print $ mod (tetra n) 17 main :: IO () main = do ss <- getLine let q = string2int ss mapM_ ans $ enumFromTo 0 q