結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
16,128 KB
testcase_01 WA -
testcase_02 AC 31 ms
16,128 KB
testcase_03 AC 31 ms
21,760 KB
testcase_04 AC 31 ms
16,000 KB
testcase_05 AC 31 ms
21,760 KB
testcase_06 AC 31 ms
16,000 KB
testcase_07 AC 31 ms
21,760 KB
testcase_08 AC 30 ms
16,128 KB
testcase_09 WA -
testcase_10 AC 41 ms
16,000 KB
testcase_11 WA -
testcase_12 AC 254 ms
16,000 KB
testcase_13 WA -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 199 ms
16,000 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 44 ms
16,000 KB
testcase_21 AC 1,549 ms
21,760 KB
testcase_22 TLE -
testcase_23 AC 1,565 ms
11,008 KB
testcase_24 TLE -
testcase_25 AC 194 ms
10,880 KB
testcase_26 AC 129 ms
10,752 KB
testcase_27 AC 99 ms
10,752 KB
testcase_28 AC 264 ms
10,880 KB
testcase_29 AC 55 ms
10,880 KB
testcase_30 AC 1,689 ms
10,880 KB
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 WA -
testcase_37 AC 61 ms
10,880 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 AC 30 ms
10,752 KB
testcase_43 AC 30 ms
10,880 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 1,536 ms
10,880 KB
testcase_47 AC 1,629 ms
10,880 KB
testcase_48 AC 1,812 ms
10,880 KB
testcase_49 AC 1,804 ms
10,880 KB
testcase_50 AC 1,804 ms
11,008 KB
testcase_51 AC 1,813 ms
11,008 KB
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 AC 31 ms
10,880 KB
testcase_57 AC 31 ms
10,880 KB
testcase_58 AC 31 ms
10,752 KB
testcase_59 AC 1,061 ms
11,008 KB
testcase_60 AC 31 ms
11,008 KB
testcase_61 AC 1,058 ms
21,888 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