結果
問題 | No.41 貯金箱の溜息(EASY) |
ユーザー | tenten |
提出日時 | 2023-06-12 16:50:41 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 151 ms / 5,000 ms |
コード長 | 2,145 bytes |
コンパイル時間 | 2,349 ms |
コンパイル使用メモリ | 93,128 KB |
実行使用メモリ | 64,628 KB |
最終ジャッジ日時 | 2024-06-11 17:48:38 |
合計ジャッジ時間 | 3,233 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 132 ms
57,764 KB |
testcase_01 | AC | 151 ms
64,628 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.stream.*; public class Main { static int[][] dp = new int[10][100000]; static final int MOD = 1000000009; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int t = sc.nextInt(); for (int[] arr : dp) { Arrays.fill(arr, -1); } StringBuilder sb = new StringBuilder(); 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 (idx <= 0) { return 1; } if (dp[idx][v] < 0) { if (v < idx) { dp[idx][v] = dfw(idx - 1, v); } else { 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(); } }