結果

問題 No.762 PDCAパス
ユーザー htensaihtensai
提出日時 2019-12-30 09:40:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 927 ms / 2,000 ms
コード長 1,638 bytes
コンパイル時間 5,164 ms
コンパイル使用メモリ 77,712 KB
実行使用メモリ 55,076 KB
最終ジャッジ日時 2024-11-07 18:46:39
合計ジャッジ時間 24,090 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,420 KB
testcase_01 AC 123 ms
41,620 KB
testcase_02 AC 112 ms
40,144 KB
testcase_03 AC 123 ms
41,568 KB
testcase_04 AC 126 ms
41,120 KB
testcase_05 AC 130 ms
41,120 KB
testcase_06 AC 118 ms
40,160 KB
testcase_07 AC 123 ms
41,216 KB
testcase_08 AC 124 ms
41,272 KB
testcase_09 AC 124 ms
40,872 KB
testcase_10 AC 132 ms
40,900 KB
testcase_11 AC 120 ms
40,460 KB
testcase_12 AC 134 ms
41,124 KB
testcase_13 AC 120 ms
40,332 KB
testcase_14 AC 130 ms
41,412 KB
testcase_15 AC 139 ms
41,216 KB
testcase_16 AC 146 ms
41,588 KB
testcase_17 AC 135 ms
41,412 KB
testcase_18 AC 126 ms
40,616 KB
testcase_19 AC 136 ms
41,284 KB
testcase_20 AC 135 ms
41,360 KB
testcase_21 AC 119 ms
40,220 KB
testcase_22 AC 695 ms
52,284 KB
testcase_23 AC 691 ms
52,472 KB
testcase_24 AC 773 ms
54,552 KB
testcase_25 AC 776 ms
54,696 KB
testcase_26 AC 644 ms
52,708 KB
testcase_27 AC 749 ms
52,892 KB
testcase_28 AC 898 ms
54,568 KB
testcase_29 AC 871 ms
53,636 KB
testcase_30 AC 788 ms
55,060 KB
testcase_31 AC 897 ms
54,352 KB
testcase_32 AC 842 ms
53,500 KB
testcase_33 AC 845 ms
53,628 KB
testcase_34 AC 859 ms
52,824 KB
testcase_35 AC 895 ms
55,076 KB
testcase_36 AC 827 ms
51,008 KB
testcase_37 AC 848 ms
51,420 KB
testcase_38 AC 803 ms
52,704 KB
testcase_39 AC 927 ms
52,368 KB
testcase_40 AC 774 ms
51,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int m = sc.nextInt();
        char[] arr = sc.next().toCharArray();
        long[] counts = new long[n];
        ArrayList<Integer>[] lists = new ArrayList[n];
        for (int i = 0; i < n; i++) {
            if (arr[i] == 'D') {
                lists[i] = new ArrayList<Integer>();
            }
        }
        for (int i = 0; i < m; i++) {
            int a = sc.nextInt() - 1;
            int b = sc.nextInt() - 1;
            if (arr[a] == 'P') {
                if (arr[b] == 'D') {
                    counts[b]++;
                }
            } else if (arr[a] == 'D') {
                if (arr[b] == 'P') {
                    counts[a]++;
                } else if (arr[b] == 'C') {
                    lists[a].add(b);
                }
            } else if (arr[a] == 'C') {
                if (arr[b] == 'D') {
                    lists[b].add(a);
                } else if (arr[b] == 'A') {
                    counts[a]++;
                }
            } else if (arr[a] == 'A') {
                if (arr[b] == 'C') {
                    counts[b]++;
                }
            }
        }
        long total = 0;
        for (int i = 0; i < n; i++) {
            if (arr[i] != 'D') {
                continue;
            }
            for (int x : lists[i]) {
                total += counts[i] * counts[x];
                total %= MOD;
            }
        }
        System.out.println(total);
    }
}
0