結果

問題 No.1340 おーじ君をさがせ
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-05-01 12:39:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,036 ms / 2,000 ms
コード長 764 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,044 KB
実行使用メモリ 80,256 KB
最終ジャッジ日時 2024-07-19 19:57:40
合計ジャッジ時間 17,147 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 39 ms
51,712 KB
testcase_05 AC 39 ms
51,840 KB
testcase_06 AC 38 ms
52,096 KB
testcase_07 AC 39 ms
52,096 KB
testcase_08 AC 36 ms
52,352 KB
testcase_09 AC 35 ms
51,712 KB
testcase_10 AC 51 ms
63,744 KB
testcase_11 AC 212 ms
75,776 KB
testcase_12 AC 74 ms
66,176 KB
testcase_13 AC 312 ms
76,544 KB
testcase_14 AC 383 ms
76,160 KB
testcase_15 AC 349 ms
75,648 KB
testcase_16 AC 70 ms
65,408 KB
testcase_17 AC 148 ms
75,520 KB
testcase_18 AC 216 ms
75,520 KB
testcase_19 AC 56 ms
62,976 KB
testcase_20 AC 46 ms
60,928 KB
testcase_21 AC 244 ms
76,416 KB
testcase_22 AC 1,036 ms
80,256 KB
testcase_23 AC 241 ms
76,032 KB
testcase_24 AC 907 ms
76,928 KB
testcase_25 AC 95 ms
76,032 KB
testcase_26 AC 92 ms
76,032 KB
testcase_27 AC 85 ms
75,776 KB
testcase_28 AC 99 ms
76,032 KB
testcase_29 AC 77 ms
72,832 KB
testcase_30 AC 258 ms
76,288 KB
testcase_31 AC 912 ms
77,568 KB
testcase_32 AC 862 ms
76,800 KB
testcase_33 AC 855 ms
77,440 KB
testcase_34 AC 776 ms
76,544 KB
testcase_35 AC 916 ms
76,800 KB
testcase_36 AC 38 ms
52,224 KB
testcase_37 AC 69 ms
72,832 KB
testcase_38 AC 905 ms
77,184 KB
testcase_39 AC 290 ms
75,904 KB
testcase_40 AC 314 ms
76,032 KB
testcase_41 AC 302 ms
76,416 KB
testcase_42 AC 45 ms
59,520 KB
testcase_43 AC 44 ms
59,392 KB
testcase_44 AC 48 ms
61,824 KB
testcase_45 AC 46 ms
60,416 KB
testcase_46 AC 244 ms
76,928 KB
testcase_47 AC 252 ms
76,032 KB
testcase_48 AC 263 ms
76,160 KB
testcase_49 AC 253 ms
75,648 KB
testcase_50 AC 248 ms
75,776 KB
testcase_51 AC 250 ms
75,648 KB
testcase_52 AC 428 ms
76,032 KB
testcase_53 AC 435 ms
76,176 KB
testcase_54 AC 420 ms
75,904 KB
testcase_55 AC 359 ms
76,544 KB
testcase_56 AC 46 ms
60,416 KB
testcase_57 AC 44 ms
60,160 KB
testcase_58 AC 37 ms
52,352 KB
testcase_59 AC 163 ms
70,528 KB
testcase_60 AC 38 ms
51,840 KB
testcase_61 AC 161 ms
70,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244853

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