結果

問題 No.657 テトラナッチ数列 Easy
ユーザー HaarHaar
提出日時 2018-09-26 08:51:48
言語 Haskell
(9.8.2)
結果
AC  
実行時間 314 ms / 2,000 ms
コード長 269 bytes
コンパイル時間 4,811 ms
コンパイル使用メモリ 179,036 KB
実行使用メモリ 105,092 KB
最終ジャッジ日時 2024-10-09 05:54:19
合計ジャッジ時間 7,287 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
48,256 KB
testcase_01 AC 119 ms
48,256 KB
testcase_02 AC 121 ms
48,256 KB
testcase_03 AC 123 ms
48,260 KB
testcase_04 AC 297 ms
100,992 KB
testcase_05 AC 132 ms
48,780 KB
testcase_06 AC 105 ms
48,256 KB
testcase_07 AC 105 ms
48,260 KB
testcase_08 AC 314 ms
105,092 KB
testcase_09 AC 180 ms
79,624 KB
testcase_10 AC 181 ms
79,372 KB
testcase_11 AC 180 ms
79,372 KB
testcase_12 AC 187 ms
76,556 KB
testcase_13 AC 312 ms
97,032 KB
testcase_14 AC 300 ms
96,008 KB
testcase_15 AC 296 ms
88,712 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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

ソースコード

diff #

import Data.Array
import Control.Monad

main = do
  q <- readLn :: IO Int

  let t = array (1,10^6) $ (1,0):(2,0):(3,0):(4,1):[(i,(t!(i-1)+t!(i-2)+t!(i-3)+t!(i-4))`mod`17) | i<-[5..10^6]] :: Array Int Int

  replicateM_ q $ do
    n <- readLn :: IO Int
    print $ t!n
0