結果
問題 | No.762 PDCAパス |
ユーザー | htensai |
提出日時 | 2019-12-30 09:38:02 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,638 bytes |
コンパイル時間 | 2,865 ms |
コンパイル使用メモリ | 78,200 KB |
実行使用メモリ | 55,884 KB |
最終ジャッジ日時 | 2024-11-07 18:41:19 |
合計ジャッジ時間 | 25,999 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 137 ms
40,980 KB |
testcase_01 | AC | 132 ms
41,168 KB |
testcase_02 | AC | 133 ms
41,340 KB |
testcase_03 | AC | 129 ms
40,968 KB |
testcase_04 | AC | 125 ms
40,208 KB |
testcase_05 | AC | 133 ms
40,964 KB |
testcase_06 | WA | - |
testcase_07 | AC | 131 ms
41,104 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 132 ms
41,300 KB |
testcase_14 | AC | 130 ms
40,992 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 134 ms
41,584 KB |
testcase_18 | WA | - |
testcase_19 | AC | 139 ms
41,412 KB |
testcase_20 | WA | - |
testcase_21 | AC | 137 ms
41,240 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
ソースコード
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[b]++; } } 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); } }