結果

問題 No.1340 おーじ君をさがせ
ユーザー googol_S0googol_S0
提出日時 2021-01-15 21:43:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 572 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 80,724 KB
最終ジャッジ日時 2024-11-26 19:30:13
合計ジャッジ時間 13,607 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,932 KB
testcase_01 AC 35 ms
53,108 KB
testcase_02 AC 38 ms
53,292 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 37 ms
53,536 KB
testcase_09 AC 38 ms
52,784 KB
testcase_10 AC 49 ms
64,884 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 244 ms
76,140 KB
testcase_16 WA -
testcase_17 AC 116 ms
75,912 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 191 ms
76,796 KB
testcase_22 AC 895 ms
80,724 KB
testcase_23 AC 198 ms
76,424 KB
testcase_24 AC 658 ms
77,528 KB
testcase_25 AC 84 ms
76,660 KB
testcase_26 AC 78 ms
76,312 KB
testcase_27 AC 76 ms
76,276 KB
testcase_28 AC 89 ms
76,360 KB
testcase_29 AC 69 ms
74,456 KB
testcase_30 AC 195 ms
76,700 KB
testcase_31 AC 668 ms
77,328 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 39 ms
53,144 KB
testcase_37 AC 65 ms
73,960 KB
testcase_38 AC 656 ms
77,476 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 45 ms
61,824 KB
testcase_45 AC 42 ms
60,716 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 186 ms
76,152 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 45 ms
61,280 KB
testcase_57 AC 43 ms
61,512 KB
testcase_58 AC 36 ms
54,460 KB
testcase_59 WA -
testcase_60 WA -
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
C=p(A,T)
print(sum([bool(sum(C[i])) for i in range(N)]))
0