結果
問題 | No.41 貯金箱の溜息(EASY) |
ユーザー | tenten |
提出日時 | 2023-04-03 15:29:57 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 163 ms / 5,000 ms |
コード長 | 2,070 bytes |
コンパイル時間 | 2,676 ms |
コンパイル使用メモリ | 96,900 KB |
実行使用メモリ | 65,280 KB |
最終ジャッジ日時 | 2024-09-25 00:47:30 |
合計ジャッジ時間 | 3,890 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 141 ms
57,568 KB |
testcase_01 | AC | 163 ms
65,280 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.stream.*; public class Main { static final int MAX = (int)(10000000000L / 111111); static int[][] dp = new int[10][MAX + 1]; static final int MOD = 1000000009; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); StringBuilder sb = new StringBuilder(); while (n-- > 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 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(); } }