結果

問題 No.1340 おーじ君をさがせ
ユーザー KudeKude
提出日時 2021-01-15 22:27:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 438 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 84,736 KB
最終ジャッジ日時 2024-11-26 19:53:43
合計ジャッジ時間 16,605 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,584 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 35 ms
51,456 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 WA -
testcase_05 AC 38 ms
51,968 KB
testcase_06 WA -
testcase_07 AC 38 ms
51,712 KB
testcase_08 AC 37 ms
51,840 KB
testcase_09 AC 36 ms
51,328 KB
testcase_10 AC 61 ms
70,400 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 230 ms
77,184 KB
testcase_14 AC 456 ms
78,720 KB
testcase_15 AC 399 ms
79,360 KB
testcase_16 WA -
testcase_17 AC 210 ms
76,928 KB
testcase_18 AC 270 ms
77,952 KB
testcase_19 AC 88 ms
75,648 KB
testcase_20 WA -
testcase_21 AC 131 ms
77,696 KB
testcase_22 AC 160 ms
78,720 KB
testcase_23 AC 130 ms
77,440 KB
testcase_24 AC 189 ms
80,612 KB
testcase_25 AC 105 ms
76,672 KB
testcase_26 AC 94 ms
76,672 KB
testcase_27 AC 98 ms
76,672 KB
testcase_28 AC 109 ms
77,568 KB
testcase_29 AC 80 ms
76,288 KB
testcase_30 AC 139 ms
78,080 KB
testcase_31 AC 197 ms
81,280 KB
testcase_32 AC 1,025 ms
84,352 KB
testcase_33 AC 976 ms
83,584 KB
testcase_34 AC 893 ms
82,944 KB
testcase_35 AC 1,025 ms
83,968 KB
testcase_36 AC 38 ms
51,840 KB
testcase_37 AC 67 ms
72,448 KB
testcase_38 AC 1,100 ms
84,736 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 54 ms
65,280 KB
testcase_45 AC 47 ms
60,544 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 322 ms
77,696 KB
testcase_50 AC 306 ms
77,312 KB
testcase_51 AC 288 ms
77,696 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 39 ms
52,864 KB
testcase_57 AC 40 ms
52,992 KB
testcase_58 AC 39 ms
51,840 KB
testcase_59 WA -
testcase_60 AC 36 ms
51,328 KB
testcase_61 WA -
権限があれば一括ダウンロードができます

ソースコード

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[a][b] = 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