結果

問題 No.1340 おーじ君をさがせ
ユーザー ああいいああいい
提出日時 2022-03-12 16:59:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 698 ms / 2,000 ms
コード長 573 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-09-17 00:37:40
合計ジャッジ時間 12,871 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 35 ms
52,352 KB
testcase_02 AC 34 ms
52,224 KB
testcase_03 AC 33 ms
51,968 KB
testcase_04 AC 32 ms
51,840 KB
testcase_05 AC 32 ms
51,968 KB
testcase_06 AC 32 ms
52,352 KB
testcase_07 AC 33 ms
51,840 KB
testcase_08 AC 35 ms
51,968 KB
testcase_09 AC 36 ms
52,096 KB
testcase_10 AC 49 ms
63,488 KB
testcase_11 AC 170 ms
76,032 KB
testcase_12 AC 63 ms
68,352 KB
testcase_13 AC 142 ms
75,824 KB
testcase_14 AC 299 ms
76,032 KB
testcase_15 AC 258 ms
75,776 KB
testcase_16 AC 62 ms
67,608 KB
testcase_17 AC 115 ms
75,648 KB
testcase_18 AC 172 ms
75,776 KB
testcase_19 AC 49 ms
65,280 KB
testcase_20 AC 42 ms
61,952 KB
testcase_21 AC 175 ms
76,540 KB
testcase_22 AC 375 ms
76,288 KB
testcase_23 AC 171 ms
76,172 KB
testcase_24 AC 698 ms
76,956 KB
testcase_25 AC 68 ms
74,368 KB
testcase_26 AC 60 ms
71,040 KB
testcase_27 AC 56 ms
69,760 KB
testcase_28 AC 73 ms
75,904 KB
testcase_29 AC 46 ms
65,408 KB
testcase_30 AC 191 ms
76,032 KB
testcase_31 AC 688 ms
76,800 KB
testcase_32 AC 645 ms
76,800 KB
testcase_33 AC 625 ms
76,672 KB
testcase_34 AC 608 ms
77,056 KB
testcase_35 AC 682 ms
77,184 KB
testcase_36 AC 32 ms
52,480 KB
testcase_37 AC 40 ms
64,128 KB
testcase_38 AC 698 ms
77,312 KB
testcase_39 AC 212 ms
76,160 KB
testcase_40 AC 230 ms
76,160 KB
testcase_41 AC 221 ms
76,588 KB
testcase_42 AC 39 ms
59,008 KB
testcase_43 AC 38 ms
59,136 KB
testcase_44 AC 42 ms
61,312 KB
testcase_45 AC 39 ms
60,032 KB
testcase_46 AC 177 ms
76,288 KB
testcase_47 AC 184 ms
76,544 KB
testcase_48 AC 197 ms
76,544 KB
testcase_49 AC 196 ms
75,904 KB
testcase_50 AC 198 ms
75,776 KB
testcase_51 AC 196 ms
75,776 KB
testcase_52 AC 326 ms
75,904 KB
testcase_53 AC 321 ms
76,112 KB
testcase_54 AC 329 ms
76,148 KB
testcase_55 AC 266 ms
76,288 KB
testcase_56 AC 38 ms
59,648 KB
testcase_57 AC 39 ms
59,520 KB
testcase_58 AC 31 ms
51,968 KB
testcase_59 AC 131 ms
73,344 KB
testcase_60 AC 32 ms
51,712 KB
testcase_61 AC 136 ms
73,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
rr = sys.stdin

N,M,T = map(int,rr.readline().split())
R = [[0] * N for _ in range(N)]
for _ in range(M):
    a,b = map(int,rr.readline().split())
    R[b][a] = 1
def seki(x,y):
    l = [[0] * N for _ in range(N)]
    for i in range(N):
        for j in range(N):
            for k in range(N):
                l[i][j] |= x[i][k] & y[k][j]
    return l
tmp = [[0] * N for _ in range(N)]
for i in range(N):
    tmp[i][i] = 1
while T:
    if T & 1:
        tmp = seki(tmp,R)
    T >>= 1
    R = seki(R,R)
ans = 0
for i in range(N):
    ans += tmp[i][0]
print(ans)
0