結果

問題 No.679 不思議マーケット
ユーザー rlangevinrlangevin
提出日時 2023-06-08 00:03:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 480 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 73,156 KB
最終ジャッジ日時 2024-06-09 14:43:03
合計ジャッジ時間 1,793 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,968 KB
testcase_01 AC 37 ms
52,692 KB
testcase_02 AC 34 ms
52,068 KB
testcase_03 AC 63 ms
73,156 KB
testcase_04 AC 56 ms
68,976 KB
testcase_05 AC 55 ms
69,864 KB
testcase_06 AC 58 ms
71,096 KB
testcase_07 AC 40 ms
55,356 KB
testcase_08 AC 55 ms
71,516 KB
testcase_09 AC 32 ms
52,684 KB
testcase_10 AC 51 ms
63,644 KB
testcase_11 AC 42 ms
56,328 KB
testcase_12 AC 54 ms
63,916 KB
testcase_13 AC 56 ms
65,308 KB
testcase_14 AC 55 ms
64,356 KB
testcase_15 AC 51 ms
63,120 KB
testcase_16 AC 36 ms
52,144 KB
testcase_17 AC 33 ms
52,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
G = [[] for i in range(N)]
deg = [0] * N
for i in range(M):
    g, r = map(int, input().split())
    g -= 1
    H = list(map(int, input().split()))
    for h in H:
        G[h - 1].append(g)
        deg[g] += 1
        
stack = []
for i in range(N):
    if deg[i] == 0:
        stack.append(i)
        
while stack:
    p = stack.pop()
    for u in G[p]:
        deg[u] -= 1
        if deg[u] == 0:
            stack.append(u)

print(deg.count(0))
0