結果

問題 No.189 SUPER HAPPY DAY
ユーザー tentententen
提出日時 2023-01-27 08:19:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 740 ms / 5,000 ms
コード長 2,625 bytes
コンパイル時間 3,157 ms
コンパイル使用メモリ 85,624 KB
実行使用メモリ 62,460 KB
最終ジャッジ日時 2024-06-27 20:42:13
合計ジャッジ時間 11,339 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
50,340 KB
testcase_01 AC 59 ms
49,940 KB
testcase_02 AC 56 ms
50,268 KB
testcase_03 AC 59 ms
50,040 KB
testcase_04 AC 57 ms
50,320 KB
testcase_05 AC 59 ms
50,056 KB
testcase_06 AC 58 ms
50,400 KB
testcase_07 AC 59 ms
49,936 KB
testcase_08 AC 58 ms
50,452 KB
testcase_09 AC 59 ms
49,816 KB
testcase_10 AC 59 ms
49,940 KB
testcase_11 AC 59 ms
49,980 KB
testcase_12 AC 59 ms
50,420 KB
testcase_13 AC 362 ms
60,036 KB
testcase_14 AC 473 ms
60,452 KB
testcase_15 AC 696 ms
62,136 KB
testcase_16 AC 740 ms
62,460 KB
testcase_17 AC 545 ms
60,748 KB
testcase_18 AC 661 ms
62,252 KB
testcase_19 AC 726 ms
62,104 KB
testcase_20 AC 252 ms
59,104 KB
testcase_21 AC 214 ms
57,760 KB
testcase_22 AC 95 ms
51,096 KB
testcase_23 AC 274 ms
57,948 KB
testcase_24 AC 277 ms
57,936 KB
testcase_25 AC 411 ms
60,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static final int MOD = 1000000009;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        HashMap<Integer, Long> month = getCount(sc.next().toCharArray());
        HashMap<Integer, Long> day = getCount(sc.next().toCharArray());
        long ans = 0;
        for (int x : month.keySet()) {
            if (x == 0) {
                continue;
            }
            ans += month.get(x) * day.getOrDefault(x, 0L) % MOD;
            ans %= MOD;
        }
        System.out.println(ans);
    }
    
    static HashMap<Integer, Long> getCount(char[] arr) {
        int base = 0;
        HashMap<Integer, Long> current = new HashMap<>();
        for (char c : arr) {
            HashMap<Integer, Long> next = new HashMap<>();
            int x = c - '0';
            for (int i = 0; i < x; i++) {
                next.put(base + i, (next.getOrDefault(base + i, 0L) + 1) % MOD);
            }
            for (int y : current.keySet()) {
                for (int i = 0; i < 10; i++) {
                    next.put(y + i, (next.getOrDefault(y + i, 0L) + current.get(y)) % MOD);
                }
            }
            base += x;
            current = next;
        }
        current.put(base, current.getOrDefault(base, 0L) + 1);
        return current;
    }
}

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