結果

問題 No.762 PDCAパス
ユーザー tcltktcltk
提出日時 2021-01-16 11:14:30
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,183 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 185,216 KB
最終ジャッジ日時 2024-11-27 11:15:19
合計ジャッジ時間 21,256 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
94,208 KB
testcase_01 AC 150 ms
180,096 KB
testcase_02 AC 141 ms
94,208 KB
testcase_03 AC 138 ms
180,224 KB
testcase_04 AC 144 ms
93,696 KB
testcase_05 AC 149 ms
180,864 KB
testcase_06 AC 140 ms
94,208 KB
testcase_07 AC 139 ms
88,576 KB
testcase_08 AC 143 ms
88,960 KB
testcase_09 AC 138 ms
88,832 KB
testcase_10 AC 136 ms
88,576 KB
testcase_11 AC 140 ms
88,832 KB
testcase_12 AC 142 ms
88,960 KB
testcase_13 AC 135 ms
88,960 KB
testcase_14 AC 138 ms
88,832 KB
testcase_15 AC 141 ms
88,832 KB
testcase_16 AC 141 ms
88,960 KB
testcase_17 AC 145 ms
88,832 KB
testcase_18 AC 143 ms
88,960 KB
testcase_19 AC 143 ms
88,832 KB
testcase_20 AC 141 ms
88,576 KB
testcase_21 AC 138 ms
88,576 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 220 ms
98,688 KB
testcase_25 AC 223 ms
98,944 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 239 ms
99,584 KB
testcase_29 AC 241 ms
99,584 KB
testcase_30 AC 237 ms
97,920 KB
testcase_31 AC 242 ms
97,664 KB
testcase_32 AC 239 ms
97,792 KB
testcase_33 AC 233 ms
96,128 KB
testcase_34 AC 239 ms
96,256 KB
testcase_35 AC 245 ms
95,744 KB
testcase_36 AC 234 ms
93,824 KB
testcase_37 AC 230 ms
93,824 KB
testcase_38 AC 233 ms
93,696 KB
testcase_39 AC 229 ms
94,080 KB
testcase_40 AC 234 ms
185,216 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(N)]
    for _ in range(M):
        _u, _v = map(int, input().split())
        G[_u-1].append(_v-1)
        G[_v-1].append(_u-1)

    count = 0
    for i in range(N):
        if S[i] == 'P':
            for j in G[i]:
                if S[j] == 'D':
                    for k in G[j]:
                        if S[k] == 'C':
                            for l in G[k]:
                                if S[l] == 'A':
                                    count += 1
    print(count)

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