結果

問題 No.657 テトラナッチ数列 Easy
ユーザー tsuchinagatsuchinaga
提出日時 2019-03-27 14:28:01
言語 Go
(1.22.1)
結果
AC  
実行時間 402 ms / 2,000 ms
コード長 505 bytes
コンパイル時間 14,769 ms
コンパイル使用メモリ 223,240 KB
実行使用メモリ 79,872 KB
最終ジャッジ日時 2024-10-11 02:20:54
合計ジャッジ時間 13,707 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 361 ms
79,488 KB
testcase_05 AC 15 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 379 ms
79,872 KB
testcase_09 AC 16 ms
5,248 KB
testcase_10 AC 18 ms
5,248 KB
testcase_11 AC 18 ms
5,248 KB
testcase_12 AC 42 ms
7,424 KB
testcase_13 AC 402 ms
79,872 KB
testcase_14 AC 398 ms
79,872 KB
testcase_15 AC 398 ms
79,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"bufio"
	"fmt"
	"os"
	"strconv"
)

func main() {
	var n, m int
	_, _ = fmt.Scan(&n)
	mod := 17

	sc := bufio.NewScanner(os.Stdin)
	nacci := map[int]int{1: 0, 2: 0, 3: 0, 4: 1}
	last := 4
	for i := 0; i < n; i++ {
		sc.Scan()
		m, _ = strconv.Atoi(sc.Text())

		if num, ok := nacci[m]; ok {
			fmt.Println(num)
		} else {
			for j := last + 1; j <= m; j++ {
				nacci[j] = (nacci[j-1] + nacci[j-2] + nacci[j-3] + nacci[j-4]) % mod
			}
			last = m
			fmt.Println(nacci[m])
		}
	}
}
0