結果

問題 No.41 貯金箱の溜息(EASY)
ユーザー tentententen
提出日時 2023-01-26 11:24:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 163 ms / 5,000 ms
コード長 2,128 bytes
コンパイル時間 3,426 ms
コンパイル使用メモリ 86,552 KB
実行使用メモリ 65,748 KB
最終ジャッジ日時 2023-09-09 14:19:03
合計ジャッジ時間 3,698 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
57,536 KB
testcase_01 AC 163 ms
65,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    static int[][] dp;
    static final int MOD = 1000000009;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int max = (int)(10000000000L / 111111);
        dp = new int[10][max + 1];
        StringBuilder sb = new StringBuilder();
        int t = sc.nextInt();
        while (t-- > 0) {
            sb.append(dfw(9, (int)(sc.nextLong() / 111111))).append("\n");
        }
        System.out.print(sb);
    }
    
    static int dfw(int idx, int v) {
        if (v == 0) {
            return 1;
        }
        if (v < 0) {
            return 0;
        }
        if (idx == 0) {
            return 1;
        }
        if (dp[idx][v] == 0) {
            dp[idx][v] = (dfw(idx - 1, v) + dfw(idx, v - idx)) % MOD;
        }
        return dp[idx][v];
    }
}

class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0