結果

問題 No.658 テトラナッチ数列 Hard
ユーザー bluemeganebluemegane
提出日時 2018-09-08 14:02:24
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 556 bytes
コンパイル時間 1,015 ms
コンパイル使用メモリ 103,680 KB
実行使用メモリ 18,560 KB
最終ジャッジ日時 2024-05-09 13:09:01
合計ジャッジ時間 1,911 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
17,664 KB
testcase_01 AC 23 ms
17,280 KB
testcase_02 AC 23 ms
17,536 KB
testcase_03 AC 23 ms
17,408 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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());
            var w = (int)(n % 4912L);
            Console.WriteLine(a[w]);
        }
    }
    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