結果

問題 No.1340 おーじ君をさがせ
ユーザー googol_S0googol_S0
提出日時 2021-01-15 21:47:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 834 ms / 2,000 ms
コード長 560 bytes
コンパイル時間 676 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 80,640 KB
最終ジャッジ日時 2024-11-27 23:06:41
合計ジャッジ時間 14,102 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 35 ms
52,096 KB
testcase_02 AC 33 ms
52,224 KB
testcase_03 AC 35 ms
51,840 KB
testcase_04 AC 34 ms
52,096 KB
testcase_05 AC 35 ms
51,712 KB
testcase_06 AC 35 ms
51,968 KB
testcase_07 AC 35 ms
51,840 KB
testcase_08 AC 36 ms
51,968 KB
testcase_09 AC 37 ms
51,712 KB
testcase_10 AC 51 ms
63,872 KB
testcase_11 AC 162 ms
75,904 KB
testcase_12 AC 66 ms
66,816 KB
testcase_13 AC 278 ms
76,416 KB
testcase_14 AC 279 ms
76,032 KB
testcase_15 AC 245 ms
76,160 KB
testcase_16 AC 62 ms
65,664 KB
testcase_17 AC 119 ms
75,904 KB
testcase_18 AC 169 ms
76,032 KB
testcase_19 AC 53 ms
63,360 KB
testcase_20 AC 46 ms
61,056 KB
testcase_21 AC 187 ms
76,288 KB
testcase_22 AC 834 ms
80,640 KB
testcase_23 AC 191 ms
76,544 KB
testcase_24 AC 649 ms
77,184 KB
testcase_25 AC 89 ms
76,160 KB
testcase_26 AC 86 ms
76,160 KB
testcase_27 AC 83 ms
76,160 KB
testcase_28 AC 94 ms
76,160 KB
testcase_29 AC 73 ms
73,344 KB
testcase_30 AC 197 ms
76,800 KB
testcase_31 AC 658 ms
77,312 KB
testcase_32 AC 611 ms
77,056 KB
testcase_33 AC 613 ms
77,184 KB
testcase_34 AC 554 ms
76,928 KB
testcase_35 AC 655 ms
77,056 KB
testcase_36 AC 37 ms
52,224 KB
testcase_37 AC 68 ms
72,832 KB
testcase_38 AC 648 ms
76,928 KB
testcase_39 AC 223 ms
76,544 KB
testcase_40 AC 230 ms
76,544 KB
testcase_41 AC 227 ms
76,672 KB
testcase_42 AC 43 ms
59,520 KB
testcase_43 AC 42 ms
59,392 KB
testcase_44 AC 46 ms
61,056 KB
testcase_45 AC 43 ms
60,160 KB
testcase_46 AC 184 ms
76,416 KB
testcase_47 AC 189 ms
76,416 KB
testcase_48 AC 203 ms
76,544 KB
testcase_49 AC 186 ms
76,416 KB
testcase_50 AC 185 ms
76,032 KB
testcase_51 AC 186 ms
75,904 KB
testcase_52 AC 308 ms
76,288 KB
testcase_53 AC 299 ms
76,416 KB
testcase_54 AC 306 ms
76,416 KB
testcase_55 AC 264 ms
76,416 KB
testcase_56 AC 45 ms
60,288 KB
testcase_57 AC 44 ms
60,416 KB
testcase_58 AC 36 ms
52,480 KB
testcase_59 AC 133 ms
71,040 KB
testcase_60 AC 41 ms
51,968 KB
testcase_61 AC 144 ms
71,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def m(a,b):
  r=[[0]*len(b[0]) for i in range(len(a))]
  for i in range(len(a)):
    for k in range(len(b)):
      for j in range(len(b[0])):
        r[i][j]|=(a[i][k]&b[k][j])
  return r

def p(a,n):
  r=[[0]*len(a) for i in range(len(a))]
  b=[]
  for i in range(len(a)):
    r[i][i]=1
    b.append(a[i][:])
  l=n
  while l>0:
    if l&1:
      r=m(b,r)
    b=m(b,b)
    l>>=1
  return r

N,M,T=map(int,input().split())
A=[[0]*N for i in range(N)]
for i in range(M):
  a,b=map(int,input().split())
  A[a][b]=1
C=p(A,T)
print(sum([C[0][i] for i in range(N)]))
0