結果

問題 No.657 テトラナッチ数列 Easy
ユーザー NoNo
提出日時 2018-03-02 23:01:12
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 833 bytes
コンパイル時間 947 ms
コンパイル使用メモリ 110,192 KB
実行使用メモリ 29,260 KB
最終ジャッジ日時 2024-06-22 05:36:57
合計ジャッジ時間 2,457 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 13
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Linq;
using System.Collections.Generic;

namespace y
{
    class Program
    {
        static void Main(string[] args)
        {
            var q = int.Parse(Console.ReadLine());
            int a = (int)Math.Pow(10, 6);
            int[] u = new int[a];
            u[0] = 0;
            u[1] = 0;
            u[2] = 0;
            u[3] = 1;

            for (int i = 4; i < a; i++)
            {
                u[i] = (u[i - 1] + u[i - 2] + u[i - 3] + u[i - 4]) % 17;
            }

            int[] ans = new int[q];
            for (int i = 0; i < q; i++)
            {
                var n = int.Parse(Console.ReadLine());
                ans[i] = u[n - 1];
            }
            foreach (var item in ans)
            {
                Console.WriteLine(item);
            }

        }
    }
}
0