結果

問題 No.220 世界のなんとか2
ユーザー tentententen
提出日時 2020-10-26 10:08:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 1,000 ms
コード長 908 bytes
コンパイル時間 2,090 ms
コンパイル使用メモリ 74,028 KB
実行使用メモリ 41,788 KB
最終ジャッジ日時 2024-07-21 21:18:08
合計ジャッジ時間 5,989 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,444 KB
testcase_01 AC 133 ms
40,996 KB
testcase_02 AC 132 ms
41,272 KB
testcase_03 AC 134 ms
41,096 KB
testcase_04 AC 135 ms
41,288 KB
testcase_05 AC 135 ms
41,112 KB
testcase_06 AC 135 ms
41,532 KB
testcase_07 AC 132 ms
41,280 KB
testcase_08 AC 134 ms
41,704 KB
testcase_09 AC 132 ms
41,376 KB
testcase_10 AC 133 ms
41,260 KB
testcase_11 AC 133 ms
41,336 KB
testcase_12 AC 132 ms
41,216 KB
testcase_13 AC 133 ms
41,788 KB
testcase_14 AC 134 ms
41,296 KB
testcase_15 AC 134 ms
41,504 KB
testcase_16 AC 132 ms
41,284 KB
testcase_17 AC 131 ms
41,284 KB
testcase_18 AC 135 ms
40,976 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[n + 1][3];
        dp[0][0] = 1;
        for (int i = 1; i <= n; i++) {
            for (int j = 0; j < 10; j++) {
                if (j == 3) {
                    continue;
                }
                for (int k = 0; k < 3; k++) {
                    dp[i][(k * 10 + j) % 3] += dp[i - 1][k];
                }
            }
        }
        long sum = 0;
        for (long x : dp[n]) {
            sum += x;
        }
        long total = pow(10, n) - sum;
        long ans = total + dp[n][0] - 1;
        System.out.println(ans);
    }
    
    static long pow(long x, long times) {
        long ret = 1;
        for (int i = 0; i < times; i++) {
            ret *= x;
        }
        return ret;
    }
}
0