結果

問題 No.762 PDCAパス
ユーザー tcltktcltk
提出日時 2021-01-16 11:18:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,121 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 119,404 KB
最終ジャッジ日時 2024-11-27 11:20:44
合計ジャッジ時間 9,669 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
88,960 KB
testcase_01 AC 123 ms
88,824 KB
testcase_02 AC 127 ms
88,912 KB
testcase_03 AC 125 ms
88,896 KB
testcase_04 AC 125 ms
88,880 KB
testcase_05 AC 129 ms
88,936 KB
testcase_06 AC 126 ms
88,888 KB
testcase_07 AC 130 ms
88,576 KB
testcase_08 AC 131 ms
88,832 KB
testcase_09 AC 119 ms
88,832 KB
testcase_10 AC 119 ms
88,576 KB
testcase_11 AC 125 ms
88,832 KB
testcase_12 AC 120 ms
88,664 KB
testcase_13 AC 121 ms
88,936 KB
testcase_14 AC 125 ms
88,812 KB
testcase_15 AC 127 ms
88,960 KB
testcase_16 AC 121 ms
88,576 KB
testcase_17 AC 119 ms
88,652 KB
testcase_18 AC 122 ms
88,928 KB
testcase_19 AC 119 ms
88,576 KB
testcase_20 AC 116 ms
88,904 KB
testcase_21 AC 121 ms
88,872 KB
testcase_22 AC 170 ms
90,432 KB
testcase_23 AC 171 ms
90,508 KB
testcase_24 AC 286 ms
115,980 KB
testcase_25 AC 275 ms
116,000 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 347 ms
119,404 KB
testcase_29 AC 345 ms
119,296 KB
testcase_30 AC 323 ms
114,984 KB
testcase_31 AC 321 ms
113,152 KB
testcase_32 AC 316 ms
113,252 KB
testcase_33 AC 299 ms
109,028 KB
testcase_34 AC 301 ms
109,120 KB
testcase_35 AC 290 ms
106,956 KB
testcase_36 AC 230 ms
97,252 KB
testcase_37 AC 233 ms
97,332 KB
testcase_38 AC 227 ms
97,236 KB
testcase_39 AC 226 ms
97,384 KB
testcase_40 AC 258 ms
97,296 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 += len(G[k][3])
    print(count)

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