結果

問題 No.1340 おーじ君をさがせ
ユーザー shinchanshinchan
提出日時 2020-09-22 03:11:16
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 786 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 22,144 KB
最終ジャッジ日時 2024-11-26 19:06:05
合計ジャッジ時間 70,913 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
17,696 KB
testcase_01 WA -
testcase_02 AC 26 ms
17,700 KB
testcase_03 AC 27 ms
21,632 KB
testcase_04 AC 27 ms
17,568 KB
testcase_05 AC 28 ms
21,632 KB
testcase_06 AC 26 ms
17,572 KB
testcase_07 AC 31 ms
21,504 KB
testcase_08 AC 26 ms
17,700 KB
testcase_09 WA -
testcase_10 AC 36 ms
17,824 KB
testcase_11 WA -
testcase_12 AC 231 ms
17,696 KB
testcase_13 WA -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 182 ms
17,700 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 36 ms
17,568 KB
testcase_21 AC 1,437 ms
10,880 KB
testcase_22 TLE -
testcase_23 AC 1,439 ms
10,880 KB
testcase_24 TLE -
testcase_25 AC 181 ms
10,880 KB
testcase_26 AC 120 ms
10,880 KB
testcase_27 AC 89 ms
10,752 KB
testcase_28 AC 241 ms
10,752 KB
testcase_29 AC 48 ms
10,880 KB
testcase_30 AC 1,559 ms
11,008 KB
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 WA -
testcase_37 AC 53 ms
10,752 KB
testcase_38 TLE -
testcase_39 AC 1,877 ms
11,008 KB
testcase_40 AC 1,983 ms
10,880 KB
testcase_41 AC 1,961 ms
10,880 KB
testcase_42 AC 28 ms
10,752 KB
testcase_43 AC 28 ms
10,880 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 1,422 ms
11,008 KB
testcase_47 AC 1,516 ms
10,880 KB
testcase_48 AC 1,673 ms
11,008 KB
testcase_49 AC 1,657 ms
10,880 KB
testcase_50 AC 1,675 ms
10,880 KB
testcase_51 AC 1,668 ms
10,880 KB
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 AC 27 ms
10,880 KB
testcase_57 AC 27 ms
10,880 KB
testcase_58 AC 26 ms
10,880 KB
testcase_59 AC 974 ms
10,880 KB
testcase_60 AC 26 ms
10,880 KB
testcase_61 AC 959 ms
21,760 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