結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,100 KB
testcase_01 WA -
testcase_02 AC 36 ms
53,564 KB
testcase_03 AC 36 ms
53,048 KB
testcase_04 AC 36 ms
52,884 KB
testcase_05 AC 36 ms
52,504 KB
testcase_06 AC 35 ms
53,232 KB
testcase_07 AC 34 ms
53,620 KB
testcase_08 AC 33 ms
52,532 KB
testcase_09 WA -
testcase_10 AC 48 ms
66,164 KB
testcase_11 WA -
testcase_12 AC 74 ms
73,600 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 71 ms
72,920 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 49 ms
64,860 KB
testcase_21 AC 205 ms
76,100 KB
testcase_22 AC 423 ms
76,988 KB
testcase_23 AC 202 ms
76,924 KB
testcase_24 AC 738 ms
77,360 KB
testcase_25 AC 90 ms
76,424 KB
testcase_26 AC 84 ms
76,496 KB
testcase_27 AC 82 ms
76,316 KB
testcase_28 AC 96 ms
76,756 KB
testcase_29 AC 69 ms
74,000 KB
testcase_30 AC 220 ms
76,908 KB
testcase_31 AC 750 ms
77,360 KB
testcase_32 AC 687 ms
77,024 KB
testcase_33 AC 691 ms
77,448 KB
testcase_34 AC 627 ms
77,544 KB
testcase_35 AC 736 ms
77,348 KB
testcase_36 WA -
testcase_37 AC 62 ms
73,452 KB
testcase_38 AC 749 ms
77,568 KB
testcase_39 AC 249 ms
77,036 KB
testcase_40 AC 253 ms
76,684 KB
testcase_41 AC 257 ms
76,748 KB
testcase_42 AC 39 ms
59,764 KB
testcase_43 AC 40 ms
60,376 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 209 ms
76,760 KB
testcase_47 AC 217 ms
76,796 KB
testcase_48 AC 231 ms
76,728 KB
testcase_49 AC 214 ms
76,664 KB
testcase_50 AC 216 ms
75,844 KB
testcase_51 AC 216 ms
76,376 KB
testcase_52 AC 353 ms
76,724 KB
testcase_53 AC 349 ms
76,528 KB
testcase_54 AC 352 ms
76,636 KB
testcase_55 AC 303 ms
76,888 KB
testcase_56 AC 42 ms
60,820 KB
testcase_57 AC 41 ms
61,008 KB
testcase_58 AC 35 ms
52,572 KB
testcase_59 AC 151 ms
76,408 KB
testcase_60 AC 35 ms
53,432 KB
testcase_61 AC 154 ms
76,632 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