結果

問題 No.762 PDCAパス
ユーザー tcltktcltk
提出日時 2021-01-16 11:19:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 465 ms / 2,000 ms
コード長 1,136 bytes
コンパイル時間 473 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 119,424 KB
最終ジャッジ日時 2024-11-27 11:21:48
合計ジャッジ時間 12,535 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
88,832 KB
testcase_01 AC 157 ms
88,960 KB
testcase_02 AC 156 ms
88,832 KB
testcase_03 AC 155 ms
88,832 KB
testcase_04 AC 168 ms
89,088 KB
testcase_05 AC 162 ms
88,960 KB
testcase_06 AC 159 ms
88,576 KB
testcase_07 AC 165 ms
88,704 KB
testcase_08 AC 166 ms
88,576 KB
testcase_09 AC 160 ms
88,960 KB
testcase_10 AC 163 ms
88,832 KB
testcase_11 AC 158 ms
89,088 KB
testcase_12 AC 160 ms
88,832 KB
testcase_13 AC 155 ms
88,960 KB
testcase_14 AC 159 ms
88,704 KB
testcase_15 AC 157 ms
88,576 KB
testcase_16 AC 159 ms
88,960 KB
testcase_17 AC 161 ms
89,088 KB
testcase_18 AC 164 ms
88,960 KB
testcase_19 AC 157 ms
89,088 KB
testcase_20 AC 157 ms
89,088 KB
testcase_21 AC 161 ms
88,832 KB
testcase_22 AC 216 ms
90,752 KB
testcase_23 AC 219 ms
91,008 KB
testcase_24 AC 382 ms
116,096 KB
testcase_25 AC 386 ms
115,840 KB
testcase_26 AC 274 ms
90,880 KB
testcase_27 AC 275 ms
90,624 KB
testcase_28 AC 465 ms
119,424 KB
testcase_29 AC 454 ms
119,424 KB
testcase_30 AC 456 ms
114,944 KB
testcase_31 AC 435 ms
113,280 KB
testcase_32 AC 440 ms
113,280 KB
testcase_33 AC 401 ms
108,672 KB
testcase_34 AC 417 ms
108,800 KB
testcase_35 AC 390 ms
107,392 KB
testcase_36 AC 303 ms
97,664 KB
testcase_37 AC 319 ms
97,280 KB
testcase_38 AC 315 ms
97,280 KB
testcase_39 AC 330 ms
97,536 KB
testcase_40 AC 337 ms
97,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#region Header
#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
from queue import PriorityQueue
import bisect
import heapq

def input():
    return sys.stdin.readline()[:-1]

sys.setrecursionlimit(1000000)
#endregion

# _INPUT = """# paste here...
# """
# sys.stdin = io.StringIO(_INPUT)

MOD = 1000000007

# def solve(N: int, M: int, S: str, u: List[int], v: List[int]) -> int:
def solve(N, M, S, u, v):
    pass  # TODO: edit here

def main():
    N, M = map(int, input().split())
    S = input()
    G = [[list() for _ in range(4)] for _ in range(N)]
    for _ in range(M):
        u, v = map(int, input().split())
        u -= 1
        v -= 1
        i = 'PDCA'.index(S[u])
        j = 'PDCA'.index(S[v])
        G[u][j].append(v)
        G[v][i].append(u)

    count = 0
    for i in range(N):
        if S[i] == 'P':
            for j in G[i][1]:
                for k in G[j][2]:
                    count = (count + len(G[k][3])) % MOD
    print(count)

if __name__ == '__main__':
    main()
0