結果

問題 No.1340 おーじ君をさがせ
ユーザー KudeKude
提出日時 2021-01-15 22:33:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,041 ms / 2,000 ms
コード長 438 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 84,864 KB
最終ジャッジ日時 2024-05-05 21:50:10
合計ジャッジ時間 17,244 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 35 ms
51,840 KB
testcase_05 AC 37 ms
52,352 KB
testcase_06 AC 37 ms
52,096 KB
testcase_07 AC 37 ms
52,224 KB
testcase_08 AC 36 ms
51,968 KB
testcase_09 AC 36 ms
51,712 KB
testcase_10 AC 61 ms
70,144 KB
testcase_11 AC 270 ms
77,824 KB
testcase_12 AC 127 ms
76,416 KB
testcase_13 AC 232 ms
77,568 KB
testcase_14 AC 447 ms
79,488 KB
testcase_15 AC 379 ms
79,104 KB
testcase_16 AC 147 ms
76,268 KB
testcase_17 AC 282 ms
77,312 KB
testcase_18 AC 356 ms
78,208 KB
testcase_19 AC 88 ms
76,288 KB
testcase_20 AC 67 ms
73,984 KB
testcase_21 AC 128 ms
77,568 KB
testcase_22 AC 162 ms
78,848 KB
testcase_23 AC 127 ms
77,568 KB
testcase_24 AC 199 ms
80,988 KB
testcase_25 AC 115 ms
77,696 KB
testcase_26 AC 93 ms
76,928 KB
testcase_27 AC 96 ms
76,288 KB
testcase_28 AC 105 ms
77,440 KB
testcase_29 AC 83 ms
76,544 KB
testcase_30 AC 134 ms
78,080 KB
testcase_31 AC 185 ms
81,152 KB
testcase_32 AC 993 ms
84,608 KB
testcase_33 AC 1,000 ms
84,096 KB
testcase_34 AC 850 ms
83,456 KB
testcase_35 AC 1,004 ms
84,224 KB
testcase_36 AC 42 ms
51,840 KB
testcase_37 AC 79 ms
72,576 KB
testcase_38 AC 1,041 ms
84,864 KB
testcase_39 AC 344 ms
78,976 KB
testcase_40 AC 355 ms
78,592 KB
testcase_41 AC 373 ms
78,336 KB
testcase_42 AC 47 ms
58,624 KB
testcase_43 AC 50 ms
59,136 KB
testcase_44 AC 62 ms
65,408 KB
testcase_45 AC 53 ms
60,032 KB
testcase_46 AC 305 ms
78,464 KB
testcase_47 AC 308 ms
78,336 KB
testcase_48 AC 330 ms
78,464 KB
testcase_49 AC 302 ms
77,696 KB
testcase_50 AC 299 ms
78,080 KB
testcase_51 AC 294 ms
77,696 KB
testcase_52 AC 496 ms
80,000 KB
testcase_53 AC 504 ms
79,744 KB
testcase_54 AC 515 ms
79,872 KB
testcase_55 AC 450 ms
80,128 KB
testcase_56 AC 39 ms
52,864 KB
testcase_57 AC 42 ms
53,120 KB
testcase_58 AC 38 ms
51,840 KB
testcase_59 AC 208 ms
77,568 KB
testcase_60 AC 35 ms
51,712 KB
testcase_61 AC 221 ms
77,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, t = map(int, input().split())
A = [[False] * n for _ in range(n)]
for _ in range(m):
    a, b = map(int, input().split())
    A[b][a] = True
def mul(a, b):
    return [[any(a[i][k] and b[k][j] for k in range(n)) for j in range(n)] for i in range(n)]
now = [[i == j for j in range(n)] for i in range(n)]
while t:
    if t & 1:
        now = mul(now, A)
    t >>= 1
    A = mul(A, A)
ans = sum(now[i][0] for i in range(n))
print(ans)
0