結果

問題 No.657 テトラナッチ数列 Easy
ユーザー fal_rndfal_rnd
提出日時 2018-04-25 10:17:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 341 ms / 2,000 ms
コード長 425 bytes
コンパイル時間 3,054 ms
コンパイル使用メモリ 74,864 KB
実行使用メモリ 63,212 KB
最終ジャッジ日時 2024-06-27 21:00:01
合計ジャッジ時間 6,509 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
57,820 KB
testcase_01 AC 138 ms
58,276 KB
testcase_02 AC 124 ms
57,248 KB
testcase_03 AC 125 ms
57,376 KB
testcase_04 AC 135 ms
57,952 KB
testcase_05 AC 317 ms
62,380 KB
testcase_06 AC 139 ms
57,884 KB
testcase_07 AC 140 ms
58,176 KB
testcase_08 AC 138 ms
57,948 KB
testcase_09 AC 321 ms
63,212 KB
testcase_10 AC 317 ms
62,972 KB
testcase_11 AC 325 ms
62,208 KB
testcase_12 AC 326 ms
62,920 KB
testcase_13 AC 330 ms
63,000 KB
testcase_14 AC 328 ms
62,788 KB
testcase_15 AC 341 ms
62,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.*;
class Main {
    static Scanner s=new Scanner(System.in);
    static int gInt(){return Integer.parseInt(s.next());}
    public static void main(String[]$){
        int[]a=new int[1000000];
        a[3]=1;
        for(int i=4;i<1000000;++i)
            a[i]=(a[i-1]+a[i-2]+a[i-3]+a[i-4])%17;
        for(int q=gInt();q>0;--q)
            System.out.println(a[gInt()-1]);
    }
}
0