結果
問題 | No.1340 おーじ君をさがせ |
ユーザー | akasia_midori |
提出日時 | 2023-01-22 13:35:14 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,131 bytes |
コンパイル時間 | 159 ms |
コンパイル使用メモリ | 82,404 KB |
実行使用メモリ | 129,700 KB |
最終ジャッジ日時 | 2024-06-24 18:03:02 |
合計ジャッジ時間 | 4,538 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
57,984 KB |
testcase_01 | AC | 42 ms
52,864 KB |
testcase_02 | AC | 41 ms
52,864 KB |
testcase_03 | AC | 39 ms
52,736 KB |
testcase_04 | AC | 39 ms
52,352 KB |
testcase_05 | AC | 40 ms
52,480 KB |
testcase_06 | AC | 39 ms
52,480 KB |
testcase_07 | AC | 40 ms
52,608 KB |
testcase_08 | AC | 48 ms
52,224 KB |
testcase_09 | AC | 40 ms
52,352 KB |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
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 | -- | - |
ソースコード
def oi(): return int(input()) def os(): return input() def mi(): return list(map(int, input().split())) # import sys # input = sys.stdin.readline # import sys # sys.setrecursionlimit(10**8) # import pypyjit # pypyjit.set_param('max_unroll_recursion=-1') input_count = 0 def prod_func(a,b): return a*b def add_func(a,b): return a+b class MATRIX: def __init__(self, prod_func, add_func): self.prod_func = prod_func self.add_func = add_func def dot(self, A,B): if len(A[0]) != len(B): return None out = [] for ay in range(len(A)): temp = [] for bx in range(len(B[0])): sums = 0 for ax in range(len(A[0])): sums += self.prod_func(A[ay][ax], B[ax][bx]) temp.append(sums) out.append(temp) return out def sum(self, A,B): if not(len(A) == len(B) and len(A[0]) == len(B[0])): return None out = [] for ay in range(len(A)): temp = [] for ax in range(len(A[0])): temp.append(self.add_func(A[ay][ax], B[ay][ax])) out.append(temp) return out def prod(self, A,B): if not(len(A) == len(B) and len(A[0]) == len(B[0])): return None out = [] for ay in range(len(A)): temp = [] for ax in range(len(A[0])): temp.append(self.prod_func(A[ay][ax], B[ay][ax])) out.append(temp) return out # 正方行列AをN乗する。 def ruijou(self, A, N): out = [[0] * len(A) for _ in range(len(A))] for i in range(len(A)): out[i][i] = 1 for i in list(bin(N)[2:][::-1]): if i=="1": out = self.dot(out, A) A = self.dot(A,A) return out input_count = 0 N,M,T = mi() mat = [[0] * N for _ in range(N)] MAT = MATRIX(prod_func, add_func) for i in range(M): a,b = mi() mat[a][b] = 1 out = MAT.ruijou(mat, T) count = 0 for o in out[0]: if o>0: count += 1 print(count)