結果

問題 No.220 世界のなんとか2
ユーザー htensaihtensai
提出日時 2020-01-14 17:30:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 1,000 ms
コード長 878 bytes
コンパイル時間 3,602 ms
コンパイル使用メモリ 76,660 KB
実行使用メモリ 41,540 KB
最終ジャッジ日時 2024-06-07 16:39:27
合計ジャッジ時間 6,578 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,068 KB
testcase_01 AC 115 ms
41,332 KB
testcase_02 AC 118 ms
41,252 KB
testcase_03 AC 106 ms
39,900 KB
testcase_04 AC 114 ms
41,008 KB
testcase_05 AC 109 ms
39,644 KB
testcase_06 AC 120 ms
41,540 KB
testcase_07 AC 106 ms
40,104 KB
testcase_08 AC 102 ms
40,212 KB
testcase_09 AC 119 ms
41,060 KB
testcase_10 AC 121 ms
40,936 KB
testcase_11 AC 104 ms
39,952 KB
testcase_12 AC 98 ms
39,304 KB
testcase_13 AC 105 ms
39,904 KB
testcase_14 AC 119 ms
41,064 KB
testcase_15 AC 122 ms
41,340 KB
testcase_16 AC 117 ms
41,104 KB
testcase_17 AC 108 ms
39,732 KB
testcase_18 AC 110 ms
39,912 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