結果
問題 | No.762 PDCAパス |
ユーザー | brthyyjp |
提出日時 | 2021-04-30 18:03:40 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 770 bytes |
コンパイル時間 | 167 ms |
コンパイル使用メモリ | 82,424 KB |
実行使用メモリ | 84,224 KB |
最終ジャッジ日時 | 2024-07-18 15:01:57 |
合計ジャッジ時間 | 4,795 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
58,112 KB |
testcase_01 | AC | 34 ms
52,352 KB |
testcase_02 | AC | 35 ms
52,224 KB |
testcase_03 | AC | 34 ms
52,096 KB |
testcase_04 | AC | 33 ms
51,968 KB |
testcase_05 | AC | 31 ms
52,276 KB |
testcase_06 | AC | 32 ms
52,096 KB |
testcase_07 | AC | 31 ms
52,224 KB |
testcase_08 | AC | 31 ms
52,460 KB |
testcase_09 | AC | 37 ms
51,968 KB |
testcase_10 | AC | 33 ms
52,480 KB |
testcase_11 | AC | 32 ms
52,224 KB |
testcase_12 | AC | 33 ms
52,608 KB |
testcase_13 | AC | 33 ms
52,284 KB |
testcase_14 | AC | 34 ms
52,224 KB |
testcase_15 | AC | 33 ms
52,608 KB |
testcase_16 | AC | 35 ms
52,736 KB |
testcase_17 | AC | 34 ms
52,480 KB |
testcase_18 | AC | 33 ms
52,608 KB |
testcase_19 | AC | 32 ms
52,480 KB |
testcase_20 | AC | 31 ms
52,096 KB |
testcase_21 | AC | 32 ms
52,072 KB |
testcase_22 | TLE | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
ソースコード
import sys import io, os sys.setrecursionlimit(10**9) input = sys.stdin.readline n, m = map(int, input().split()) s = str(input().rstrip()) g = [[] for i in range(n)] mod = 10**9+7 for i in range(m): u, v = map(int, input().split()) u, v = u-1, v-1 g[u].append(v) g[v].append(u) res = [0] def dfs(v, A): if len(A) == 4: res[0] += 1 res[0] %= mod return for u in g[v]: if A[-1] == 'P': if s[u] == 'D': dfs(u, A+[s[u]]) elif A[-1] == 'D': if s[u] == 'C': dfs(u, A+[s[u]]) elif A[-1] == 'C': if s[u] == 'A': dfs(u, A+[s[u]]) return for v in range(n): if s[v] == 'P': dfs(v, ['P']) print(res[0]%mod)