結果

問題 No.1171 Runs in Subsequences
ユーザー tentententen
提出日時 2021-01-22 11:50:49
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,369 bytes
コンパイル時間 2,189 ms
コンパイル使用メモリ 83,932 KB
実行使用メモリ 62,204 KB
最終ジャッジ日時 2024-06-07 21:19:20
合計ジャッジ時間 18,423 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
45,464 KB
testcase_01 AC 102 ms
40,852 KB
testcase_02 AC 92 ms
40,032 KB
testcase_03 AC 122 ms
41,448 KB
testcase_04 AC 95 ms
40,208 KB
testcase_05 AC 107 ms
39,976 KB
testcase_06 AC 97 ms
40,312 KB
testcase_07 AC 110 ms
40,916 KB
testcase_08 AC 108 ms
40,388 KB
testcase_09 AC 96 ms
39,896 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
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);
        char[] arr = sc.next().toCharArray();
        int length = arr.length;
        ArrayList<TreeMap<Integer, Integer>> counts = new ArrayList<>();
        for (int i = 0; i < 26; i++) {
            counts.add(new TreeMap<>());
        }
        for (char c : arr) {
            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 (TreeMap<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