結果

問題 No.1340 おーじ君をさがせ
ユーザー googol_S0googol_S0
提出日時 2021-01-15 21:47:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 855 ms / 2,000 ms
コード長 560 bytes
コンパイル時間 1,591 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 80,256 KB
最終ジャッジ日時 2024-05-05 21:44:20
合計ジャッジ時間 13,629 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 36 ms
52,352 KB
testcase_07 AC 39 ms
52,096 KB
testcase_08 AC 39 ms
52,096 KB
testcase_09 AC 44 ms
51,712 KB
testcase_10 AC 59 ms
63,872 KB
testcase_11 AC 164 ms
75,776 KB
testcase_12 AC 68 ms
66,432 KB
testcase_13 AC 267 ms
76,288 KB
testcase_14 AC 282 ms
75,904 KB
testcase_15 AC 241 ms
76,032 KB
testcase_16 AC 63 ms
65,664 KB
testcase_17 AC 118 ms
75,776 KB
testcase_18 AC 179 ms
75,904 KB
testcase_19 AC 58 ms
63,616 KB
testcase_20 AC 46 ms
61,056 KB
testcase_21 AC 184 ms
76,544 KB
testcase_22 AC 855 ms
80,256 KB
testcase_23 AC 187 ms
76,544 KB
testcase_24 AC 651 ms
77,056 KB
testcase_25 AC 88 ms
76,288 KB
testcase_26 AC 85 ms
76,416 KB
testcase_27 AC 80 ms
76,032 KB
testcase_28 AC 93 ms
76,544 KB
testcase_29 AC 73 ms
73,088 KB
testcase_30 AC 197 ms
76,416 KB
testcase_31 AC 659 ms
77,056 KB
testcase_32 AC 625 ms
77,056 KB
testcase_33 AC 609 ms
77,056 KB
testcase_34 AC 567 ms
77,184 KB
testcase_35 AC 665 ms
77,312 KB
testcase_36 AC 37 ms
51,840 KB
testcase_37 AC 71 ms
72,832 KB
testcase_38 AC 665 ms
77,312 KB
testcase_39 AC 229 ms
76,800 KB
testcase_40 AC 227 ms
76,544 KB
testcase_41 AC 229 ms
76,672 KB
testcase_42 AC 43 ms
59,008 KB
testcase_43 AC 44 ms
59,264 KB
testcase_44 AC 47 ms
61,312 KB
testcase_45 AC 45 ms
60,032 KB
testcase_46 AC 188 ms
76,672 KB
testcase_47 AC 191 ms
76,160 KB
testcase_48 AC 204 ms
76,672 KB
testcase_49 AC 200 ms
75,776 KB
testcase_50 AC 204 ms
76,160 KB
testcase_51 AC 191 ms
76,288 KB
testcase_52 AC 305 ms
76,032 KB
testcase_53 AC 301 ms
76,160 KB
testcase_54 AC 314 ms
76,160 KB
testcase_55 AC 268 ms
76,672 KB
testcase_56 AC 50 ms
60,288 KB
testcase_57 AC 50 ms
60,288 KB
testcase_58 AC 38 ms
52,224 KB
testcase_59 AC 131 ms
70,912 KB
testcase_60 AC 38 ms
51,840 KB
testcase_61 AC 137 ms
71,168 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