結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,480 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 41 ms
51,712 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 41 ms
52,352 KB
testcase_09 AC 40 ms
52,096 KB
testcase_10 AC 58 ms
63,744 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 276 ms
75,904 KB
testcase_16 WA -
testcase_17 AC 134 ms
75,904 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 214 ms
76,416 KB
testcase_22 AC 969 ms
81,152 KB
testcase_23 AC 215 ms
76,416 KB
testcase_24 AC 722 ms
77,312 KB
testcase_25 AC 105 ms
76,288 KB
testcase_26 AC 96 ms
76,032 KB
testcase_27 AC 94 ms
76,288 KB
testcase_28 AC 108 ms
76,160 KB
testcase_29 AC 86 ms
74,624 KB
testcase_30 AC 228 ms
76,800 KB
testcase_31 AC 733 ms
77,440 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 42 ms
52,480 KB
testcase_37 AC 78 ms
72,960 KB
testcase_38 AC 728 ms
77,184 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 53 ms
61,312 KB
testcase_45 AC 51 ms
60,672 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 212 ms
76,032 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 51 ms
60,416 KB
testcase_57 AC 51 ms
60,416 KB
testcase_58 AC 41 ms
52,480 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