結果

問題 No.1340 おーじ君をさがせ
ユーザー shinchanshinchan
提出日時 2020-09-22 18:42:45
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 785 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,796 KB
実行使用メモリ 77,696 KB
最終ジャッジ日時 2024-05-05 02:26:43
合計ジャッジ時間 13,881 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 WA -
testcase_02 AC 35 ms
51,968 KB
testcase_03 AC 38 ms
52,332 KB
testcase_04 AC 35 ms
51,968 KB
testcase_05 AC 36 ms
52,224 KB
testcase_06 AC 36 ms
52,096 KB
testcase_07 AC 37 ms
52,352 KB
testcase_08 AC 35 ms
52,200 KB
testcase_09 WA -
testcase_10 AC 48 ms
65,408 KB
testcase_11 WA -
testcase_12 AC 77 ms
72,960 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 76 ms
72,320 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 50 ms
63,360 KB
testcase_21 AC 202 ms
76,672 KB
testcase_22 AC 416 ms
77,056 KB
testcase_23 AC 204 ms
76,928 KB
testcase_24 AC 720 ms
77,296 KB
testcase_25 AC 88 ms
76,692 KB
testcase_26 AC 80 ms
76,544 KB
testcase_27 AC 81 ms
76,416 KB
testcase_28 AC 93 ms
76,672 KB
testcase_29 AC 63 ms
74,880 KB
testcase_30 AC 210 ms
76,800 KB
testcase_31 AC 732 ms
77,568 KB
testcase_32 AC 676 ms
77,500 KB
testcase_33 AC 675 ms
77,440 KB
testcase_34 AC 609 ms
77,440 KB
testcase_35 AC 730 ms
77,696 KB
testcase_36 WA -
testcase_37 AC 61 ms
72,832 KB
testcase_38 AC 746 ms
77,568 KB
testcase_39 AC 245 ms
77,184 KB
testcase_40 AC 247 ms
77,288 KB
testcase_41 AC 247 ms
77,312 KB
testcase_42 AC 38 ms
59,392 KB
testcase_43 AC 40 ms
59,392 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 207 ms
76,672 KB
testcase_47 AC 214 ms
76,672 KB
testcase_48 AC 228 ms
77,056 KB
testcase_49 AC 231 ms
76,672 KB
testcase_50 AC 218 ms
76,656 KB
testcase_51 AC 213 ms
76,928 KB
testcase_52 AC 345 ms
76,536 KB
testcase_53 AC 342 ms
76,856 KB
testcase_54 AC 347 ms
76,544 KB
testcase_55 AC 296 ms
77,288 KB
testcase_56 AC 40 ms
59,776 KB
testcase_57 AC 41 ms
60,032 KB
testcase_58 AC 34 ms
52,096 KB
testcase_59 AC 146 ms
76,416 KB
testcase_60 AC 33 ms
51,968 KB
testcase_61 AC 152 ms
76,664 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