結果

問題 No.1340 おーじ君をさがせ
ユーザー ああいいああいい
提出日時 2022-03-12 16:57:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 719 ms / 2,000 ms
コード長 561 bytes
コンパイル時間 492 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 77,568 KB
最終ジャッジ日時 2024-09-17 00:35:03
合計ジャッジ時間 13,311 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
51,840 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 44 ms
51,456 KB
testcase_03 AC 43 ms
52,224 KB
testcase_04 AC 42 ms
52,352 KB
testcase_05 AC 44 ms
51,456 KB
testcase_06 AC 42 ms
52,224 KB
testcase_07 AC 45 ms
51,968 KB
testcase_08 AC 43 ms
51,840 KB
testcase_09 AC 42 ms
51,840 KB
testcase_10 AC 62 ms
63,616 KB
testcase_11 AC 243 ms
75,648 KB
testcase_12 AC 94 ms
71,168 KB
testcase_13 AC 117 ms
76,068 KB
testcase_14 AC 190 ms
76,032 KB
testcase_15 AC 165 ms
75,868 KB
testcase_16 AC 91 ms
70,272 KB
testcase_17 AC 101 ms
75,904 KB
testcase_18 AC 129 ms
75,776 KB
testcase_19 AC 67 ms
66,688 KB
testcase_20 AC 66 ms
65,408 KB
testcase_21 AC 218 ms
76,544 KB
testcase_22 AC 428 ms
77,040 KB
testcase_23 AC 213 ms
76,544 KB
testcase_24 AC 719 ms
77,056 KB
testcase_25 AC 109 ms
76,032 KB
testcase_26 AC 101 ms
76,160 KB
testcase_27 AC 101 ms
76,416 KB
testcase_28 AC 116 ms
76,160 KB
testcase_29 AC 84 ms
73,344 KB
testcase_30 AC 229 ms
76,544 KB
testcase_31 AC 716 ms
77,328 KB
testcase_32 AC 359 ms
77,056 KB
testcase_33 AC 353 ms
77,056 KB
testcase_34 AC 558 ms
77,056 KB
testcase_35 AC 660 ms
77,420 KB
testcase_36 AC 40 ms
52,480 KB
testcase_37 AC 72 ms
72,064 KB
testcase_38 AC 371 ms
77,568 KB
testcase_39 AC 190 ms
76,928 KB
testcase_40 AC 186 ms
76,672 KB
testcase_41 AC 185 ms
76,928 KB
testcase_42 AC 43 ms
58,624 KB
testcase_43 AC 42 ms
57,600 KB
testcase_44 AC 48 ms
60,672 KB
testcase_45 AC 48 ms
59,392 KB
testcase_46 AC 239 ms
77,200 KB
testcase_47 AC 258 ms
76,672 KB
testcase_48 AC 285 ms
76,672 KB
testcase_49 AC 160 ms
76,032 KB
testcase_50 AC 161 ms
75,904 KB
testcase_51 AC 166 ms
76,032 KB
testcase_52 AC 206 ms
76,160 KB
testcase_53 AC 193 ms
76,160 KB
testcase_54 AC 197 ms
76,032 KB
testcase_55 AC 347 ms
76,800 KB
testcase_56 AC 51 ms
59,776 KB
testcase_57 AC 49 ms
59,008 KB
testcase_58 AC 44 ms
52,096 KB
testcase_59 AC 108 ms
75,896 KB
testcase_60 AC 38 ms
51,840 KB
testcase_61 AC 109 ms
76,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,T = map(int,input().split())
R = [[0] * N for _ in range(N)]
for _ in range(M):
    a,b = map(int,input().split())
    R[b][a] = 1
def seki(x,y):
    l = [[0] * N for _ in range(N)]
    for i in range(N):
        for j in range(N):
            for k in range(N):
                if x[i][k] and y[k][j]:
                    l[i][j] = 1
    return l
tmp = [[0] * N for _ in range(N)]
for i in range(N):
    tmp[i][i] = 1
while T:
    if T & 1:
        tmp = seki(tmp,R)
    T >>= 1
    R = seki(R,R)
ans = 0
for i in range(N):
    ans += tmp[i][0]
print(ans)
0