結果

問題 No.44 DPなすごろく
ユーザー トミートミー
提出日時 2024-04-01 18:11:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 5,000 ms
コード長 431 bytes
コンパイル時間 2,174 ms
コンパイル使用メモリ 74,676 KB
実行使用メモリ 41,532 KB
最終ジャッジ日時 2024-09-30 21:56:22
合計ジャッジ時間 5,435 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,188 KB
testcase_01 AC 107 ms
41,112 KB
testcase_02 AC 107 ms
40,868 KB
testcase_03 AC 116 ms
41,028 KB
testcase_04 AC 108 ms
41,532 KB
testcase_05 AC 97 ms
39,924 KB
testcase_06 AC 107 ms
41,228 KB
testcase_07 AC 99 ms
39,952 KB
testcase_08 AC 111 ms
41,012 KB
testcase_09 AC 109 ms
40,732 KB
testcase_10 AC 107 ms
41,304 KB
testcase_11 AC 118 ms
41,332 KB
testcase_12 AC 107 ms
40,980 KB
testcase_13 AC 94 ms
39,744 KB
testcase_14 AC 95 ms
40,028 KB
testcase_15 AC 108 ms
40,872 KB
testcase_16 AC 107 ms
40,940 KB
testcase_17 AC 113 ms
40,952 KB
testcase_18 AC 107 ms
40,996 KB
testcase_19 AC 101 ms
39,840 KB
testcase_20 AC 109 ms
41,144 KB
testcase_21 AC 110 ms
41,332 KB
testcase_22 AC 110 ms
40,972 KB
testcase_23 AC 109 ms
41,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long n = sc.nextInt();
        long[] dp = new long[3];
        dp[0] = 1;
        dp[1] = 1;
        int i;
        for (i = 2; i != n + 1; i++) {
            dp[i % 3] = dp[(i + 1) % 3] + dp[(i + 2) % 3];
        }
        System.out.println(dp[(i - 1) % 3]);

        sc.close();

    }
}
0