結果

問題 No.1340 おーじ君をさがせ
ユーザー shinchanshinchan
提出日時 2020-09-22 03:56:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 785 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 13,056 KB
実行使用メモリ 16,384 KB
最終ジャッジ日時 2024-05-05 02:23:14
合計ジャッジ時間 15,793 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
16,384 KB
testcase_01 WA -
testcase_02 AC 25 ms
10,880 KB
testcase_03 AC 25 ms
10,880 KB
testcase_04 AC 25 ms
11,008 KB
testcase_05 AC 25 ms
11,008 KB
testcase_06 AC 25 ms
10,880 KB
testcase_07 AC 25 ms
11,008 KB
testcase_08 AC 25 ms
10,880 KB
testcase_09 WA -
testcase_10 AC 34 ms
11,008 KB
testcase_11 WA -
testcase_12 AC 226 ms
11,008 KB
testcase_13 WA -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 173 ms
11,008 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 36 ms
11,008 KB
testcase_21 AC 1,361 ms
10,880 KB
testcase_22 TLE -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
権限があれば一括ダウンロードができます

ソースコード

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