結果

問題 No.1340 おーじ君をさがせ
ユーザー shinchanshinchan
提出日時 2020-09-22 03:57:59
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 785 bytes
コンパイル時間 761 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 77,568 KB
最終ジャッジ日時 2024-05-05 02:25:37
合計ジャッジ時間 14,340 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,096 KB
testcase_01 WA -
testcase_02 AC 32 ms
52,096 KB
testcase_03 AC 33 ms
52,224 KB
testcase_04 AC 32 ms
52,224 KB
testcase_05 AC 34 ms
52,096 KB
testcase_06 AC 32 ms
52,224 KB
testcase_07 AC 33 ms
52,224 KB
testcase_08 AC 34 ms
52,096 KB
testcase_09 WA -
testcase_10 AC 54 ms
65,280 KB
testcase_11 WA -
testcase_12 AC 80 ms
72,576 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 69 ms
71,808 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 46 ms
63,488 KB
testcase_21 AC 199 ms
76,416 KB
testcase_22 AC 411 ms
76,800 KB
testcase_23 AC 196 ms
76,672 KB
testcase_24 AC 711 ms
77,500 KB
testcase_25 AC 96 ms
76,820 KB
testcase_26 AC 86 ms
76,288 KB
testcase_27 AC 78 ms
75,904 KB
testcase_28 AC 91 ms
76,288 KB
testcase_29 AC 64 ms
74,496 KB
testcase_30 AC 211 ms
76,672 KB
testcase_31 AC 723 ms
77,056 KB
testcase_32 AC 670 ms
77,568 KB
testcase_33 AC 674 ms
77,312 KB
testcase_34 AC 603 ms
77,056 KB
testcase_35 AC 711 ms
77,440 KB
testcase_36 WA -
testcase_37 AC 68 ms
73,088 KB
testcase_38 AC 727 ms
77,568 KB
testcase_39 AC 247 ms
76,800 KB
testcase_40 AC 249 ms
76,928 KB
testcase_41 AC 253 ms
76,800 KB
testcase_42 AC 38 ms
59,136 KB
testcase_43 AC 38 ms
59,392 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 206 ms
76,800 KB
testcase_47 AC 211 ms
76,544 KB
testcase_48 AC 236 ms
76,800 KB
testcase_49 AC 207 ms
76,448 KB
testcase_50 AC 211 ms
76,160 KB
testcase_51 AC 208 ms
76,416 KB
testcase_52 AC 348 ms
76,544 KB
testcase_53 AC 335 ms
76,416 KB
testcase_54 AC 346 ms
76,540 KB
testcase_55 AC 293 ms
77,084 KB
testcase_56 AC 39 ms
59,648 KB
testcase_57 AC 38 ms
60,416 KB
testcase_58 AC 34 ms
52,224 KB
testcase_59 AC 145 ms
76,528 KB
testcase_60 AC 35 ms
51,968 KB
testcase_61 AC 149 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(n, m, t) = map(int,input().split())
def mul(a, b):
    c = [[0 for j in range(n)] for i in range(n)]
    for i in range(n):
        for j in range(n):
            c[i][j] = 0
            for k in range(n):
                c[i][j] |= a[i][k] & b[k][j]
    return c


G = [[0 for j in range(n)] for i in range(n)]
for i in range(n):
    for j in range(n):
        G[i][j] = 0

for i in range(m):
    (a, b) = map(int,input().split())
    G[b][a] = 1


A = [[0 for j in range(n)] for i in range(n)]

for i in range(n):
    for j in range(n):
        A[i][j] = 0

for i in range(n):
    A[i][i] = 1

while t:
    if t % 2 == 1:
        A = mul(A, G)
    G = mul(G, G)
    t = t // 2
        

ans = 0
for i in range(n):
    ans += A[i][0]

if ans == 0:
    print(-1)
else:
    print(ans)
0