結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 WA -
testcase_02 AC 34 ms
51,712 KB
testcase_03 AC 32 ms
52,096 KB
testcase_04 AC 33 ms
52,480 KB
testcase_05 AC 37 ms
52,096 KB
testcase_06 AC 35 ms
51,968 KB
testcase_07 AC 36 ms
52,224 KB
testcase_08 AC 35 ms
51,840 KB
testcase_09 WA -
testcase_10 AC 54 ms
65,408 KB
testcase_11 WA -
testcase_12 AC 92 ms
72,576 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 77 ms
71,680 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 54 ms
63,232 KB
testcase_21 AC 222 ms
76,544 KB
testcase_22 AC 448 ms
76,800 KB
testcase_23 AC 209 ms
76,544 KB
testcase_24 AC 772 ms
77,160 KB
testcase_25 AC 108 ms
76,544 KB
testcase_26 AC 91 ms
76,672 KB
testcase_27 AC 89 ms
76,160 KB
testcase_28 AC 105 ms
76,416 KB
testcase_29 AC 80 ms
74,368 KB
testcase_30 AC 226 ms
76,672 KB
testcase_31 AC 743 ms
77,440 KB
testcase_32 AC 687 ms
77,312 KB
testcase_33 AC 672 ms
77,184 KB
testcase_34 AC 603 ms
77,312 KB
testcase_35 AC 751 ms
77,312 KB
testcase_36 WA -
testcase_37 AC 71 ms
72,704 KB
testcase_38 AC 750 ms
77,824 KB
testcase_39 AC 249 ms
76,800 KB
testcase_40 AC 273 ms
76,800 KB
testcase_41 AC 262 ms
77,184 KB
testcase_42 AC 42 ms
59,136 KB
testcase_43 AC 42 ms
59,392 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 212 ms
76,416 KB
testcase_47 AC 218 ms
76,800 KB
testcase_48 AC 235 ms
76,544 KB
testcase_49 AC 218 ms
76,416 KB
testcase_50 AC 228 ms
76,160 KB
testcase_51 AC 225 ms
76,544 KB
testcase_52 AC 362 ms
76,416 KB
testcase_53 AC 346 ms
76,544 KB
testcase_54 AC 356 ms
76,544 KB
testcase_55 AC 305 ms
76,952 KB
testcase_56 AC 43 ms
60,032 KB
testcase_57 AC 44 ms
60,032 KB
testcase_58 AC 36 ms
52,096 KB
testcase_59 AC 156 ms
76,672 KB
testcase_60 AC 35 ms
51,840 KB
testcase_61 AC 161 ms
76,672 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