結果

問題 No.1340 おーじ君をさがせ
ユーザー rlangevinrlangevin
提出日時 2023-11-21 00:05:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,869 ms / 2,000 ms
コード長 810 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 79,488 KB
最終ジャッジ日時 2024-09-26 06:47:00
合計ジャッジ時間 29,617 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
52,096 KB
testcase_01 AC 49 ms
52,224 KB
testcase_02 AC 46 ms
51,840 KB
testcase_03 AC 47 ms
51,968 KB
testcase_04 AC 47 ms
51,712 KB
testcase_05 AC 46 ms
51,584 KB
testcase_06 AC 48 ms
51,712 KB
testcase_07 AC 47 ms
51,840 KB
testcase_08 AC 47 ms
51,840 KB
testcase_09 AC 47 ms
51,840 KB
testcase_10 AC 66 ms
63,616 KB
testcase_11 AC 394 ms
75,392 KB
testcase_12 AC 108 ms
66,560 KB
testcase_13 AC 452 ms
76,288 KB
testcase_14 AC 741 ms
75,520 KB
testcase_15 AC 621 ms
75,904 KB
testcase_16 AC 98 ms
65,280 KB
testcase_17 AC 255 ms
75,776 KB
testcase_18 AC 402 ms
75,648 KB
testcase_19 AC 75 ms
62,976 KB
testcase_20 AC 57 ms
60,800 KB
testcase_21 AC 420 ms
75,904 KB
testcase_22 AC 1,492 ms
79,488 KB
testcase_23 AC 419 ms
75,904 KB
testcase_24 AC 1,869 ms
76,800 KB
testcase_25 AC 98 ms
72,320 KB
testcase_26 AC 81 ms
68,736 KB
testcase_27 AC 73 ms
67,200 KB
testcase_28 AC 111 ms
73,472 KB
testcase_29 AC 62 ms
65,408 KB
testcase_30 AC 444 ms
75,776 KB
testcase_31 AC 1,869 ms
77,056 KB
testcase_32 AC 1,684 ms
76,928 KB
testcase_33 AC 1,670 ms
77,056 KB
testcase_34 AC 1,514 ms
76,800 KB
testcase_35 AC 1,834 ms
77,056 KB
testcase_36 AC 45 ms
51,840 KB
testcase_37 AC 55 ms
63,872 KB
testcase_38 AC 1,802 ms
77,056 KB
testcase_39 AC 513 ms
76,160 KB
testcase_40 AC 529 ms
76,416 KB
testcase_41 AC 524 ms
76,160 KB
testcase_42 AC 56 ms
59,520 KB
testcase_43 AC 55 ms
59,392 KB
testcase_44 AC 59 ms
61,440 KB
testcase_45 AC 57 ms
60,288 KB
testcase_46 AC 412 ms
76,160 KB
testcase_47 AC 431 ms
76,288 KB
testcase_48 AC 476 ms
76,032 KB
testcase_49 AC 470 ms
75,776 KB
testcase_50 AC 469 ms
75,648 KB
testcase_51 AC 469 ms
75,904 KB
testcase_52 AC 838 ms
76,288 KB
testcase_53 AC 815 ms
75,776 KB
testcase_54 AC 834 ms
76,544 KB
testcase_55 AC 658 ms
76,416 KB
testcase_56 AC 57 ms
60,288 KB
testcase_57 AC 57 ms
60,032 KB
testcase_58 AC 47 ms
51,840 KB
testcase_59 AC 293 ms
71,552 KB
testcase_60 AC 46 ms
51,968 KB
testcase_61 AC 296 ms
71,168 KB
権限があれば一括ダウンロードができます

ソースコード

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 = 999999937
dp = Matpow_Linear(dp, T, mod, N)
ans = 0
for i in range(N):
    if dp[i]:
        ans += 1
        
print(ans)
0