結果

問題 No.220 世界のなんとか2
ユーザー htensaihtensai
提出日時 2020-01-14 17:30:50
言語 Java
(openjdk 23)
結果
AC  
実行時間 130 ms / 1,000 ms
コード長 878 bytes
コンパイル時間 2,418 ms
コンパイル使用メモリ 76,976 KB
実行使用メモリ 41,524 KB
最終ジャッジ日時 2024-12-25 23:56:38
合計ジャッジ時間 5,898 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
40,988 KB
testcase_01 AC 126 ms
41,524 KB
testcase_02 AC 130 ms
39,864 KB
testcase_03 AC 125 ms
41,344 KB
testcase_04 AC 121 ms
41,196 KB
testcase_05 AC 122 ms
41,332 KB
testcase_06 AC 106 ms
41,200 KB
testcase_07 AC 127 ms
41,484 KB
testcase_08 AC 119 ms
41,180 KB
testcase_09 AC 121 ms
41,292 KB
testcase_10 AC 124 ms
41,132 KB
testcase_11 AC 124 ms
41,292 KB
testcase_12 AC 119 ms
41,304 KB
testcase_13 AC 122 ms
41,072 KB
testcase_14 AC 120 ms
41,152 KB
testcase_15 AC 117 ms
40,976 KB
testcase_16 AC 106 ms
41,304 KB
testcase_17 AC 119 ms
41,120 KB
testcase_18 AC 103 ms
41,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        long[][] dp = new long[3][n + 1];
        dp[0][0] = 1;
        for (int i = 1; i <= n; i++) {
            for (int j = 0; j < 10; j++) {
                if (j == 3) {
                    continue;
                }
                dp[j % 3][i] += dp[0][i - 1];
                dp[(j + 1) % 3][i] += dp[1][i - 1];
                dp[(j + 2) % 3][i] += dp[2][i - 1];
            }
        }
        if (n < 19) {
            long ans = (long)(Math.pow(10, n)) - dp[1][n] - dp[2][n] - 1;
            System.out.println(ans);
        } else {
            long base = (long)(Math.pow(10, n) / 2);
            long ans = base - dp[1][n] + base - dp[2][n] - 1;
            System.out.println(ans);
        }
    }
}
0