結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,136 KB
testcase_01 WA -
testcase_02 AC 38 ms
53,948 KB
testcase_03 AC 39 ms
52,612 KB
testcase_04 AC 39 ms
53,568 KB
testcase_05 AC 38 ms
53,076 KB
testcase_06 AC 38 ms
53,212 KB
testcase_07 AC 39 ms
53,660 KB
testcase_08 AC 38 ms
52,772 KB
testcase_09 WA -
testcase_10 AC 55 ms
66,680 KB
testcase_11 WA -
testcase_12 AC 82 ms
73,980 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 79 ms
72,556 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 53 ms
64,832 KB
testcase_21 AC 224 ms
76,888 KB
testcase_22 AC 462 ms
77,364 KB
testcase_23 AC 226 ms
77,016 KB
testcase_24 AC 803 ms
77,628 KB
testcase_25 AC 99 ms
76,584 KB
testcase_26 AC 93 ms
76,528 KB
testcase_27 AC 88 ms
76,480 KB
testcase_28 AC 104 ms
76,620 KB
testcase_29 AC 72 ms
74,676 KB
testcase_30 AC 241 ms
76,848 KB
testcase_31 AC 816 ms
77,804 KB
testcase_32 AC 755 ms
77,896 KB
testcase_33 AC 743 ms
77,604 KB
testcase_34 AC 677 ms
77,280 KB
testcase_35 AC 801 ms
77,316 KB
testcase_36 WA -
testcase_37 AC 67 ms
73,412 KB
testcase_38 AC 814 ms
77,616 KB
testcase_39 AC 272 ms
76,956 KB
testcase_40 AC 279 ms
77,024 KB
testcase_41 AC 277 ms
77,288 KB
testcase_42 AC 44 ms
59,708 KB
testcase_43 AC 45 ms
60,300 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 229 ms
77,256 KB
testcase_47 AC 237 ms
77,160 KB
testcase_48 AC 255 ms
77,372 KB
testcase_49 AC 234 ms
76,564 KB
testcase_50 AC 236 ms
76,420 KB
testcase_51 AC 235 ms
76,488 KB
testcase_52 AC 383 ms
76,912 KB
testcase_53 AC 378 ms
76,560 KB
testcase_54 AC 385 ms
76,856 KB
testcase_55 AC 330 ms
77,528 KB
testcase_56 AC 46 ms
62,368 KB
testcase_57 AC 45 ms
60,992 KB
testcase_58 AC 39 ms
53,712 KB
testcase_59 AC 166 ms
76,800 KB
testcase_60 AC 38 ms
52,944 KB
testcase_61 AC 168 ms
76,864 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