結果

問題 No.658 テトラナッチ数列 Hard
ユーザー bluemegane
提出日時 2018-09-08 13:54:16
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 525 bytes
コンパイル時間 3,039 ms
コンパイル使用メモリ 103,680 KB
実行使用メモリ 18,560 KB
最終ジャッジ日時 2024-12-16 02:05:34
合計ジャッジ時間 2,676 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 1 WA * 7
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

public class Hello
{
    public static void Main()
    {
        var a = new int[4913];
        a[4] = 1;
        tetraset(a);
        var q = int.Parse(Console.ReadLine().Trim());
        for (int i = 0; i < q; i++)
        {
            var n = long.Parse(Console.ReadLine().Trim());
            Console.WriteLine(a[n % 4912]);
        }
    }
    public static void tetraset(int[] a)
    {
        for (int i = 5; i <= 4912; i++)
            a[i] = (a[i - 1] + a[i - 2] + a[i - 3] + a[i - 4]) % 17;
    }
}
0