結果

問題 No.1340 おーじ君をさがせ
ユーザー hir355hir355
提出日時 2021-01-15 22:41:01
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 757 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 121,600 KB
最終ジャッジ日時 2024-05-05 02:54:46
合計ジャッジ時間 19,613 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
57,472 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 35 ms
52,096 KB
testcase_03 AC 35 ms
51,968 KB
testcase_04 AC 36 ms
51,968 KB
testcase_05 AC 36 ms
52,096 KB
testcase_06 AC 35 ms
51,968 KB
testcase_07 AC 37 ms
52,224 KB
testcase_08 AC 35 ms
51,840 KB
testcase_09 AC 39 ms
51,968 KB
testcase_10 AC 93 ms
76,544 KB
testcase_11 AC 1,161 ms
98,432 KB
testcase_12 AC 267 ms
79,360 KB
testcase_13 AC 730 ms
93,824 KB
testcase_14 TLE -
testcase_15 AC 1,914 ms
107,392 KB
testcase_16 AC 232 ms
78,336 KB
testcase_17 AC 628 ms
90,752 KB
testcase_18 AC 1,035 ms
97,408 KB
testcase_19 AC 142 ms
77,184 KB
testcase_20 AC 124 ms
76,264 KB
testcase_21 AC 421 ms
82,048 KB
testcase_22 AC 955 ms
92,928 KB
testcase_23 AC 435 ms
81,792 KB
testcase_24 AC 1,681 ms
105,600 KB
testcase_25 AC 144 ms
77,312 KB
testcase_26 AC 118 ms
76,928 KB
testcase_27 AC 120 ms
77,312 KB
testcase_28 AC 153 ms
77,568 KB
testcase_29 AC 95 ms
76,800 KB
testcase_30 AC 461 ms
82,944 KB
testcase_31 AC 1,591 ms
105,472 KB
testcase_32 TLE -
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 #

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