結果

問題 No.1340 おーじ君をさがせ
ユーザー brthyyjpbrthyyjp
提出日時 2021-01-16 03:51:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 845 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 80,640 KB
最終ジャッジ日時 2024-05-05 04:30:40
合計ジャッジ時間 30,341 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 37 ms
52,096 KB
testcase_05 AC 36 ms
52,224 KB
testcase_06 AC 38 ms
51,968 KB
testcase_07 AC 37 ms
52,504 KB
testcase_08 AC 38 ms
52,096 KB
testcase_09 AC 36 ms
51,968 KB
testcase_10 AC 60 ms
64,128 KB
testcase_11 AC 381 ms
76,160 KB
testcase_12 AC 102 ms
67,712 KB
testcase_13 AC 421 ms
76,800 KB
testcase_14 AC 761 ms
76,032 KB
testcase_15 AC 623 ms
76,032 KB
testcase_16 AC 91 ms
66,432 KB
testcase_17 AC 237 ms
76,160 KB
testcase_18 AC 395 ms
76,032 KB
testcase_19 AC 66 ms
63,872 KB
testcase_20 AC 51 ms
61,312 KB
testcase_21 AC 432 ms
76,672 KB
testcase_22 AC 1,500 ms
80,640 KB
testcase_23 AC 418 ms
76,416 KB
testcase_24 AC 1,808 ms
77,952 KB
testcase_25 AC 114 ms
76,416 KB
testcase_26 AC 102 ms
76,416 KB
testcase_27 AC 91 ms
76,160 KB
testcase_28 AC 128 ms
76,288 KB
testcase_29 AC 78 ms
73,216 KB
testcase_30 AC 430 ms
76,416 KB
testcase_31 AC 1,820 ms
77,184 KB
testcase_32 AC 1,683 ms
77,440 KB
testcase_33 AC 1,663 ms
77,184 KB
testcase_34 AC 1,496 ms
77,184 KB
testcase_35 AC 1,852 ms
77,440 KB
testcase_36 AC 39 ms
51,968 KB
testcase_37 AC 72 ms
72,704 KB
testcase_38 AC 1,781 ms
77,312 KB
testcase_39 AC 518 ms
76,800 KB
testcase_40 AC 535 ms
76,544 KB
testcase_41 AC 519 ms
76,544 KB
testcase_42 AC 44 ms
59,520 KB
testcase_43 AC 43 ms
59,648 KB
testcase_44 AC 49 ms
61,056 KB
testcase_45 AC 46 ms
60,416 KB
testcase_46 AC 430 ms
76,544 KB
testcase_47 AC 443 ms
76,544 KB
testcase_48 AC 474 ms
76,672 KB
testcase_49 AC 458 ms
76,160 KB
testcase_50 AC 452 ms
76,288 KB
testcase_51 AC 459 ms
76,288 KB
testcase_52 AC 832 ms
76,416 KB
testcase_53 AC 817 ms
76,160 KB
testcase_54 AC 818 ms
76,288 KB
testcase_55 AC 647 ms
76,800 KB
testcase_56 AC 49 ms
60,672 KB
testcase_57 WA -
testcase_58 AC 39 ms
52,608 KB
testcase_59 AC 286 ms
72,192 KB
testcase_60 AC 38 ms
52,352 KB
testcase_61 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, t = map(int, input().split())
A = [[0]*n for i in range(n)]
for i in range(m):
    a, b = map(int, input().split())
    A[b][a] = 1
#print(A)
mod = 10**9+7
# A*B
def mat_mul(A, B, mod):
    C = [[0]*len(B[0]) for i in range(len(A))]
    for i in range(len(A)):
        for k in range(len(B)):
            for j in range(len(B[0])):
                C[i][j] = (C[i][j] + A[i][k]*B[k][j])%mod
    return C

#A**n
def mat_pow(A, n, mod):
    B = [[0]*len(A) for i in range(len(A))]
    for i in range(len(A)):
        B[i][i] = 1
    while n > 0:
        if n & 1 == 1:
            B = mat_mul(A, B, mod)
        A = mat_mul(A, A, mod)
        n = n>>1
    return B

X = [0]*n
X[0] = 1
A = mat_pow(A, t, mod)
ans = 0
for i in range(n):
    s = 0
    for j in range(n):
        s += A[i][j]*X[j]
    if s:
        ans += 1
#print(A)
print(ans)
0