結果

問題 No.1340 おーじ君をさがせ
ユーザー googol_S0googol_S0
提出日時 2021-01-15 21:41:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 610 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 81,152 KB
最終ジャッジ日時 2024-05-05 02:37:03
合計ジャッジ時間 14,220 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,480 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 35 ms
52,224 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 WA -
testcase_05 AC 39 ms
52,352 KB
testcase_06 WA -
testcase_07 AC 39 ms
52,224 KB
testcase_08 AC 39 ms
52,224 KB
testcase_09 AC 38 ms
51,968 KB
testcase_10 AC 52 ms
64,000 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 280 ms
76,544 KB
testcase_14 AC 297 ms
76,288 KB
testcase_15 AC 259 ms
76,288 KB
testcase_16 WA -
testcase_17 AC 121 ms
75,904 KB
testcase_18 AC 171 ms
76,288 KB
testcase_19 AC 55 ms
63,744 KB
testcase_20 WA -
testcase_21 AC 191 ms
76,416 KB
testcase_22 AC 886 ms
81,152 KB
testcase_23 AC 213 ms
76,416 KB
testcase_24 AC 663 ms
77,824 KB
testcase_25 AC 102 ms
76,416 KB
testcase_26 AC 96 ms
76,160 KB
testcase_27 AC 86 ms
76,160 KB
testcase_28 AC 99 ms
76,160 KB
testcase_29 AC 85 ms
74,752 KB
testcase_30 AC 201 ms
76,672 KB
testcase_31 AC 685 ms
77,568 KB
testcase_32 AC 636 ms
77,184 KB
testcase_33 AC 624 ms
77,312 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 36 ms
52,480 KB
testcase_37 AC 71 ms
72,832 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 49 ms
61,440 KB
testcase_45 AC 45 ms
60,160 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 195 ms
76,288 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 45 ms
60,544 KB
testcase_57 AC 45 ms
60,672 KB
testcase_58 AC 35 ms
52,096 KB
testcase_59 WA -
testcase_60 AC 36 ms
52,352 KB
testcase_61 WA -
権限があれば一括ダウンロードができます

ソースコード

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-1][b-1]=1
B=[[0]*N for i in range(N)]
B[0][N-1]=1
C=m(p(A,T),B)
print(sum([C[i][-1] for i in range(N)]))
0