結果

問題 No.679 不思議マーケット
ユーザー convexineqconvexineq
提出日時 2021-03-13 17:31:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 427 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 69,504 KB
最終ジャッジ日時 2024-10-15 08:09:15
合計ジャッジ時間 2,072 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 67 ms
69,248 KB
testcase_04 AC 65 ms
68,608 KB
testcase_05 AC 62 ms
67,328 KB
testcase_06 AC 68 ms
69,376 KB
testcase_07 AC 49 ms
55,680 KB
testcase_08 AC 71 ms
68,480 KB
testcase_09 AC 40 ms
52,096 KB
testcase_10 AC 54 ms
61,824 KB
testcase_11 AC 50 ms
55,552 KB
testcase_12 AC 66 ms
69,504 KB
testcase_13 AC 69 ms
68,736 KB
testcase_14 AC 59 ms
63,488 KB
testcase_15 AC 55 ms
61,568 KB
testcase_16 AC 40 ms
51,968 KB
testcase_17 AC 40 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
g = [[] for _ in range(n)]
indegree = [0]*n
for _ in range(m):
    x,_ = map(int,input().split())
    x -= 1
    for r in map(int,input().split()):
        g[r-1].append(x)
        indegree[x] += 1

ans = 0
q = [i for i in range(n) if indegree[i]==0]
while q:
    v = q.pop()
    ans += 1
    for c in g[v]:
        indegree[c] -= 1
        if indegree[c] == 0:
            q.append(c)
print(ans)
0