結果

問題 No.1340 おーじ君をさがせ
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-05-01 12:37:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 766 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 80,884 KB
最終ジャッジ日時 2024-07-19 19:55:48
合計ジャッジ時間 18,475 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 40 ms
52,608 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 40 ms
52,352 KB
testcase_05 AC 40 ms
51,996 KB
testcase_06 AC 39 ms
51,840 KB
testcase_07 AC 41 ms
52,608 KB
testcase_08 AC 39 ms
52,096 KB
testcase_09 AC 40 ms
52,224 KB
testcase_10 AC 54 ms
64,256 KB
testcase_11 AC 225 ms
76,032 KB
testcase_12 AC 76 ms
66,560 KB
testcase_13 AC 336 ms
76,672 KB
testcase_14 AC 417 ms
76,032 KB
testcase_15 AC 352 ms
75,912 KB
testcase_16 AC 69 ms
65,664 KB
testcase_17 AC 153 ms
75,904 KB
testcase_18 AC 227 ms
76,032 KB
testcase_19 AC 57 ms
63,488 KB
testcase_20 AC 48 ms
61,056 KB
testcase_21 AC 252 ms
76,504 KB
testcase_22 AC 1,111 ms
80,884 KB
testcase_23 AC 253 ms
76,512 KB
testcase_24 AC 991 ms
77,184 KB
testcase_25 AC 96 ms
76,464 KB
testcase_26 AC 86 ms
76,672 KB
testcase_27 AC 83 ms
76,288 KB
testcase_28 AC 103 ms
76,416 KB
testcase_29 AC 73 ms
73,216 KB
testcase_30 AC 269 ms
76,800 KB
testcase_31 AC 993 ms
77,312 KB
testcase_32 AC 936 ms
77,440 KB
testcase_33 AC 924 ms
77,476 KB
testcase_34 AC 840 ms
77,040 KB
testcase_35 AC 1,006 ms
77,352 KB
testcase_36 AC 39 ms
52,480 KB
testcase_37 AC 69 ms
72,832 KB
testcase_38 AC 996 ms
77,568 KB
testcase_39 AC 315 ms
77,184 KB
testcase_40 AC 319 ms
76,672 KB
testcase_41 AC 317 ms
76,632 KB
testcase_42 AC 47 ms
59,520 KB
testcase_43 AC 46 ms
59,392 KB
testcase_44 AC 49 ms
61,568 KB
testcase_45 AC 47 ms
60,800 KB
testcase_46 AC 249 ms
77,056 KB
testcase_47 AC 260 ms
76,672 KB
testcase_48 AC 285 ms
76,512 KB
testcase_49 AC 263 ms
76,160 KB
testcase_50 AC 263 ms
75,904 KB
testcase_51 AC 263 ms
76,160 KB
testcase_52 AC 460 ms
75,960 KB
testcase_53 AC 447 ms
76,288 KB
testcase_54 AC 474 ms
76,032 KB
testcase_55 AC 377 ms
76,672 KB
testcase_56 AC 48 ms
60,800 KB
testcase_57 WA -
testcase_58 AC 39 ms
52,480 KB
testcase_59 AC 173 ms
70,912 KB
testcase_60 AC 40 ms
51,840 KB
testcase_61 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10 ** 9 + 7

def mat_mul(a, b):
    n = len(a)
    res = [[0] * n for i 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]
                res[i][j] %= mod
    return res

def mat_pow(a, k):
    if k == 1: return a
    n = len(a)
    res = [[0] * n for i in range(n)]
    for i in range(n):
        res[i][i] = 1
    while k:
        if k & 1:
            res = mat_mul(res, a)
        a = mat_mul(a, a)
        k >>= 1
    return res

n, m, t = map(int, input().split())
G = [[0] * n for i in range(n)]
for _ in range(m):
    a, b = map(int, input().split())
    G[a][b] = 1
G2 = mat_pow(G, t)
ans = 0
for i in range(n):
    if G2[0][i] > 0:
        ans += 1
print(ans)
0