結果
問題 | No.41 貯金箱の溜息(EASY) |
ユーザー | tenten |
提出日時 | 2023-01-26 11:24:00 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 178 ms / 5,000 ms |
コード長 | 2,128 bytes |
コンパイル時間 | 3,495 ms |
コンパイル使用メモリ | 95,184 KB |
実行使用メモリ | 53,768 KB |
最終ジャッジ日時 | 2024-06-27 07:13:47 |
合計ジャッジ時間 | 3,908 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 142 ms
46,976 KB |
testcase_01 | AC | 178 ms
53,768 KB |
ソースコード
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(); } }