結果

問題 No.1340 おーじ君をさがせ
ユーザー rlangevinrlangevin
提出日時 2023-11-21 00:03:36
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 819 bytes
コンパイル時間 407 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 87,680 KB
最終ジャッジ日時 2024-09-26 06:46:27
合計ジャッジ時間 11,576 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
57,856 KB
testcase_01 AC 46 ms
52,224 KB
testcase_02 AC 46 ms
51,840 KB
testcase_03 AC 45 ms
51,840 KB
testcase_04 AC 47 ms
51,840 KB
testcase_05 AC 46 ms
51,968 KB
testcase_06 AC 49 ms
51,968 KB
testcase_07 AC 45 ms
51,840 KB
testcase_08 AC 42 ms
51,712 KB
testcase_09 AC 41 ms
51,968 KB
testcase_10 AC 85 ms
76,160 KB
testcase_11 AC 384 ms
75,520 KB
testcase_12 AC 234 ms
76,544 KB
testcase_13 AC 449 ms
76,288 KB
testcase_14 AC 1,410 ms
82,048 KB
testcase_15 AC 619 ms
76,288 KB
testcase_16 AC 207 ms
76,376 KB
testcase_17 AC 246 ms
75,648 KB
testcase_18 AC 390 ms
75,776 KB
testcase_19 AC 68 ms
62,976 KB
testcase_20 AC 84 ms
75,776 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def Matprod(A, B, mod, N):
    temp = [0] * N*N
    for i in range(N):
        for j in range(N):
            ij = i * N + j
            for k in range(N):
                temp[ij] += A[i*N+k] * B[k*N+j]
                temp[ij] %= mod
    return temp

def Matpow_Linear(A, M, mod, N):
    Mat = [0] * N*N
    for i in range(N):
        Mat[i*N+i] = 1
         
    while M:
        if M & 1:
            Mat = Matprod(Mat, A, mod, N)
        A = Matprod(A, A, mod, N)
        M >>= 1
    return Mat  

N, M, T = map(int, input().split())
N2 = N * N
dp = [0] * N2
for i in range(M):
    a, b = map(int, input().split())
    dp[a*N+b] += 1
    
mod = 100000000000000003
dp = Matpow_Linear(dp, T, mod, N)
ans = 0
for i in range(N):
    if dp[i]:
        ans += 1
        
print(ans)
0