結果

問題 No.1340 おーじ君をさがせ
ユーザー googol_S0googol_S0
提出日時 2021-01-15 21:45:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 604 bytes
コンパイル時間 390 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 80,768 KB
最終ジャッジ日時 2024-05-05 02:36:13
合計ジャッジ時間 13,735 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 42 ms
52,352 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 36 ms
52,480 KB
testcase_04 WA -
testcase_05 AC 38 ms
51,968 KB
testcase_06 WA -
testcase_07 AC 34 ms
52,224 KB
testcase_08 AC 32 ms
51,712 KB
testcase_09 AC 33 ms
52,224 KB
testcase_10 AC 48 ms
64,000 KB
testcase_11 AC 162 ms
76,160 KB
testcase_12 WA -
testcase_13 AC 260 ms
76,800 KB
testcase_14 AC 270 ms
76,160 KB
testcase_15 AC 237 ms
76,160 KB
testcase_16 AC 58 ms
66,048 KB
testcase_17 AC 110 ms
75,992 KB
testcase_18 AC 157 ms
76,032 KB
testcase_19 AC 48 ms
63,360 KB
testcase_20 AC 48 ms
60,800 KB
testcase_21 AC 189 ms
76,672 KB
testcase_22 AC 852 ms
80,768 KB
testcase_23 AC 181 ms
76,544 KB
testcase_24 AC 650 ms
77,568 KB
testcase_25 AC 80 ms
76,544 KB
testcase_26 AC 73 ms
76,288 KB
testcase_27 AC 80 ms
76,288 KB
testcase_28 AC 95 ms
76,544 KB
testcase_29 AC 77 ms
74,496 KB
testcase_30 AC 208 ms
76,672 KB
testcase_31 AC 653 ms
77,184 KB
testcase_32 AC 623 ms
77,420 KB
testcase_33 AC 628 ms
77,312 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 36 ms
52,096 KB
testcase_37 AC 61 ms
72,832 KB
testcase_38 WA -
testcase_39 AC 217 ms
76,928 KB
testcase_40 AC 221 ms
76,832 KB
testcase_41 AC 217 ms
76,880 KB
testcase_42 WA -
testcase_43 AC 40 ms
59,904 KB
testcase_44 AC 43 ms
61,696 KB
testcase_45 AC 42 ms
60,288 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 AC 201 ms
76,544 KB
testcase_49 AC 187 ms
76,288 KB
testcase_50 AC 191 ms
76,288 KB
testcase_51 AC 189 ms
76,160 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 42 ms
60,672 KB
testcase_57 AC 42 ms
60,288 KB
testcase_58 AC 35 ms
52,224 KB
testcase_59 WA -
testcase_60 AC 34 ms
51,968 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=p(A,T)
print(sum([C[0][i] for i in range(N)]))
0