結果

問題 No.1340 おーじ君をさがせ
ユーザー hir355hir355
提出日時 2021-01-15 22:41:01
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 757 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,952 KB
実行使用メモリ 200,052 KB
最終ジャッジ日時 2024-11-26 20:01:31
合計ジャッジ時間 57,807 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
60,196 KB
testcase_01 AC 39 ms
166,008 KB
testcase_02 AC 37 ms
59,564 KB
testcase_03 AC 38 ms
167,476 KB
testcase_04 AC 39 ms
60,356 KB
testcase_05 AC 37 ms
155,548 KB
testcase_06 AC 38 ms
60,132 KB
testcase_07 AC 39 ms
164,468 KB
testcase_08 AC 38 ms
59,684 KB
testcase_09 AC 37 ms
54,012 KB
testcase_10 AC 79 ms
76,312 KB
testcase_11 AC 1,193 ms
98,360 KB
testcase_12 AC 275 ms
79,292 KB
testcase_13 AC 741 ms
93,784 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 238 ms
78,324 KB
testcase_17 AC 636 ms
90,716 KB
testcase_18 AC 1,083 ms
97,252 KB
testcase_19 AC 144 ms
77,332 KB
testcase_20 AC 109 ms
76,612 KB
testcase_21 AC 428 ms
82,408 KB
testcase_22 AC 954 ms
92,572 KB
testcase_23 AC 529 ms
82,392 KB
testcase_24 AC 1,722 ms
105,416 KB
testcase_25 AC 143 ms
77,376 KB
testcase_26 AC 119 ms
77,244 KB
testcase_27 AC 123 ms
77,592 KB
testcase_28 AC 160 ms
77,588 KB
testcase_29 AC 97 ms
76,520 KB
testcase_30 AC 478 ms
83,116 KB
testcase_31 AC 1,613 ms
105,460 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 37 ms
53,684 KB
testcase_37 AC 66 ms
73,476 KB
testcase_38 TLE -
testcase_39 AC 1,538 ms
94,532 KB
testcase_40 AC 1,624 ms
96,228 KB
testcase_41 AC 1,629 ms
96,164 KB
testcase_42 AC 39 ms
52,956 KB
testcase_43 AC 46 ms
61,668 KB
testcase_44 AC 71 ms
75,324 KB
testcase_45 AC 57 ms
66,652 KB
testcase_46 AC 1,204 ms
88,020 KB
testcase_47 AC 1,235 ms
88,788 KB
testcase_48 AC 1,400 ms
89,604 KB
testcase_49 AC 1,497 ms
93,004 KB
testcase_50 AC 1,450 ms
92,624 KB
testcase_51 AC 1,431 ms
92,268 KB
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 AC 48 ms
61,896 KB
testcase_57 AC 46 ms
60,636 KB
testcase_58 AC 39 ms
52,588 KB
testcase_59 AC 872 ms
86,636 KB
testcase_60 AC 39 ms
52,668 KB
testcase_61 AC 976 ms
200,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 10 ** 19
n, m, t = map(int, input().split())
mat = [[INF] * n for _ in range(n)]
for _ in range(m):
    a, b = map(int, input().split())
    mat[a][b] = 1
res = [[INF] * n for _ in range(n)]
for i in range(n):
    res[i][i] = 0
while t > 0:
    if t & 1:
        tmp = [[INF] * n for _ in range(n)]
        for i in range(n):
            for j in range(n):
                tmp[i][j] = min(res[i][k] + mat[k][j] for k in range(n))
        res = [row[:] for row in tmp]
    tmp = [[INF] * n for _ in range(n)]
    for i in range(n):
        for j in range(n):
            tmp[i][j] = min(mat[i][k] + mat[k][j] for k in range(n))
    mat = [row[:] for row in tmp]
    t //= 2
ans = 0
for i in range(n):
    if res[0][i] < INF:
        ans += 1
print(ans)
0