結果

問題 No.1171 Runs in Subsequences
ユーザー tentententen
提出日時 2021-01-22 11:52:00
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,310 bytes
コンパイル時間 2,213 ms
コンパイル使用メモリ 80,308 KB
実行使用メモリ 58,836 KB
最終ジャッジ日時 2024-06-07 21:20:50
合計ジャッジ時間 12,141 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
46,316 KB
testcase_01 AC 116 ms
41,176 KB
testcase_02 AC 111 ms
40,944 KB
testcase_03 AC 131 ms
41,328 KB
testcase_04 AC 105 ms
40,008 KB
testcase_05 AC 113 ms
40,936 KB
testcase_06 AC 113 ms
41,028 KB
testcase_07 AC 102 ms
39,912 KB
testcase_08 AC 119 ms
41,284 KB
testcase_09 AC 101 ms
39,980 KB
testcase_10 AC 988 ms
57,780 KB
testcase_11 AC 982 ms
57,412 KB
testcase_12 AC 984 ms
57,872 KB
testcase_13 AC 1,002 ms
58,836 KB
testcase_14 AC 971 ms
58,260 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        ArrayList<HashMap<Integer, Integer>> counts = new ArrayList<>();
        for (int i = 0; i < 26; i++) {
            counts.add(new HashMap<>());
        }
        for (char c : sc.next().toCharArray()) {
            int idx = c - 'a';
            for (int x : counts.get(idx).keySet()) {
                counts.get(idx).put(x, counts.get(idx).get(x) * 2 % MOD);
            }
            counts.get(idx).put(1, counts.get(idx).getOrDefault(1, 0) + 1);
            for (int i = 0; i < 26; i++) {
                if (idx == i) {
                    continue;
                }
                for (int x : counts.get(i).keySet()) {
                    counts.get(idx).put(x + 1, (counts.get(idx).getOrDefault(x + 1, 0) + counts.get(i).get(x)) % MOD);
                }
            }
        }
        long ans = 0;
        for (HashMap<Integer, Integer> map : counts) {
            for (Map.Entry<Integer, Integer> entry : map.entrySet()) {
                ans += (long)(entry.getKey().intValue()) * entry.getValue() % MOD;
                ans %= MOD;
            }
        }
        System.out.println(ans);
    }
}
0