結果

問題 No.1340 おーじ君をさがせ
ユーザー nephrologistnephrologist
提出日時 2021-01-15 22:22:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 930 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 80,128 KB
最終ジャッジ日時 2024-05-05 02:48:46
合計ジャッジ時間 17,524 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 36 ms
52,224 KB
testcase_09 AC 38 ms
52,224 KB
testcase_10 AC 54 ms
63,232 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 307 ms
75,904 KB
testcase_16 WA -
testcase_17 AC 144 ms
76,032 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 243 ms
76,288 KB
testcase_22 AC 1,011 ms
80,128 KB
testcase_23 AC 248 ms
76,032 KB
testcase_24 AC 952 ms
77,440 KB
testcase_25 AC 110 ms
76,160 KB
testcase_26 AC 101 ms
75,904 KB
testcase_27 AC 93 ms
76,160 KB
testcase_28 AC 117 ms
76,416 KB
testcase_29 AC 82 ms
76,288 KB
testcase_30 AC 258 ms
76,032 KB
testcase_31 AC 939 ms
76,928 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 38 ms
52,096 KB
testcase_37 AC 73 ms
72,832 KB
testcase_38 AC 832 ms
77,312 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 47 ms
60,288 KB
testcase_45 AC 44 ms
58,880 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 265 ms
76,288 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 45 ms
60,032 KB
testcase_57 AC 45 ms
59,776 KB
testcase_58 AC 39 ms
52,224 KB
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#  nxnの行列積
# n is necessary
mod = 10 ** 9 + 7


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]
                if res[i][j]:
                    res[i][j] = 1
    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 i in range(n):
    flag = 0
    for j in range(n):
        if res[i][j]:
            flag = 1
    ans += flag

print(ans)
0