結果

問題 No.1340 おーじ君をさがせ
ユーザー nephrologistnephrologist
提出日時 2021-01-15 23:14:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 835 bytes
コンパイル時間 532 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 297,088 KB
最終ジャッジ日時 2024-11-26 20:14:21
合計ジャッジ時間 84,369 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
60,064 KB
testcase_01 AC 39 ms
53,324 KB
testcase_02 AC 38 ms
58,268 KB
testcase_03 AC 39 ms
181,732 KB
testcase_04 WA -
testcase_05 AC 38 ms
204,932 KB
testcase_06 WA -
testcase_07 AC 37 ms
59,876 KB
testcase_08 AC 38 ms
58,916 KB
testcase_09 AC 38 ms
180,060 KB
testcase_10 TLE -
testcase_11 AC 175 ms
179,200 KB
testcase_12 TLE -
testcase_13 AC 279 ms
178,432 KB
testcase_14 TLE -
testcase_15 AC 267 ms
178,888 KB
testcase_16 TLE -
testcase_17 AC 120 ms
176,256 KB
testcase_18 AC 177 ms
81,280 KB
testcase_19 AC 53 ms
189,056 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 AC 682 ms
82,304 KB
testcase_33 AC 672 ms
178,176 KB
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 38 ms
57,856 KB
testcase_37 AC 46 ms
163,712 KB
testcase_38 WA -
testcase_39 AC 419 ms
182,528 KB
testcase_40 AC 272 ms
82,432 KB
testcase_41 AC 285 ms
179,456 KB
testcase_42 WA -
testcase_43 AC 44 ms
165,468 KB
testcase_44 AC 45 ms
65,152 KB
testcase_45 AC 44 ms
255,744 KB
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 AC 246 ms
77,056 KB
testcase_50 AC 391 ms
79,232 KB
testcase_51 AC 396 ms
79,232 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 WA -
testcase_60 AC 38 ms
52,608 KB
testcase_61 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.buffer.readline
#  nxnの行列積
# n is necessary


def matrix_product(A, B):
    res = [[0] * n for _ in range(n)]
    for i in range(n):
        for k in range(n):
            for j in range(n):
                res[i][j] += A[i][k] * B[k][j]
    return res


def matrix_exponents(A, t):
    res = [[0] * n for _ in range(n)]
    for i in range(n):
        res[i][i] = 1
    while t > 0:
        if t & 1 == 1:
            res = matrix_product(res, A)
        A = matrix_product(A, A)
        t //= 2
    return res


n, m, t = map(int, input().split())

graph = [[0] * (n) for _ in range(n)]
for _ in range(m):
    a, b = map(int, input().split())
    a, b = a - 1, b - 1
    graph[a][b] = 1

res = matrix_exponents(graph, t)
ans = 0

for j in range(n):
    if res[0][j]:
        ans += 1

print(ans)
0