結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,352 KB
testcase_01 AC 35 ms
52,096 KB
testcase_02 AC 33 ms
51,840 KB
testcase_03 AC 34 ms
52,224 KB
testcase_04 WA -
testcase_05 AC 35 ms
52,352 KB
testcase_06 WA -
testcase_07 AC 35 ms
52,096 KB
testcase_08 AC 34 ms
51,840 KB
testcase_09 AC 34 ms
52,096 KB
testcase_10 AC 53 ms
70,144 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 212 ms
77,440 KB
testcase_14 AC 440 ms
79,700 KB
testcase_15 AC 369 ms
79,296 KB
testcase_16 WA -
testcase_17 AC 184 ms
77,568 KB
testcase_18 AC 252 ms
78,360 KB
testcase_19 AC 76 ms
76,032 KB
testcase_20 WA -
testcase_21 AC 113 ms
77,696 KB
testcase_22 AC 145 ms
79,212 KB
testcase_23 AC 112 ms
77,656 KB
testcase_24 AC 180 ms
80,884 KB
testcase_25 AC 98 ms
77,244 KB
testcase_26 AC 87 ms
76,928 KB
testcase_27 AC 97 ms
76,544 KB
testcase_28 AC 111 ms
77,696 KB
testcase_29 AC 79 ms
76,160 KB
testcase_30 AC 128 ms
78,208 KB
testcase_31 AC 181 ms
81,392 KB
testcase_32 AC 989 ms
84,688 KB
testcase_33 AC 941 ms
84,608 KB
testcase_34 AC 850 ms
83,272 KB
testcase_35 AC 976 ms
84,608 KB
testcase_36 AC 34 ms
52,352 KB
testcase_37 AC 58 ms
72,576 KB
testcase_38 AC 999 ms
84,480 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 46 ms
65,280 KB
testcase_45 AC 41 ms
60,544 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 293 ms
77,960 KB
testcase_50 AC 277 ms
78,000 KB
testcase_51 AC 272 ms
78,080 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 37 ms
53,376 KB
testcase_57 AC 36 ms
53,632 KB
testcase_58 AC 35 ms
52,352 KB
testcase_59 WA -
testcase_60 AC 33 ms
52,096 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