結果

問題 No.679 不思議マーケット
ユーザー kohei2019kohei2019
提出日時 2022-03-12 01:57:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 444 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 76,196 KB
最終ジャッジ日時 2024-09-16 06:03:20
合計ジャッジ時間 2,250 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,296 KB
testcase_01 AC 35 ms
52,004 KB
testcase_02 AC 35 ms
52,172 KB
testcase_03 AC 101 ms
76,196 KB
testcase_04 AC 67 ms
70,532 KB
testcase_05 AC 68 ms
72,876 KB
testcase_06 AC 68 ms
71,056 KB
testcase_07 AC 59 ms
65,800 KB
testcase_08 AC 68 ms
69,616 KB
testcase_09 AC 33 ms
52,400 KB
testcase_10 AC 62 ms
70,244 KB
testcase_11 AC 60 ms
68,984 KB
testcase_12 AC 64 ms
70,716 KB
testcase_13 AC 60 ms
70,900 KB
testcase_14 AC 61 ms
71,240 KB
testcase_15 AC 53 ms
64,308 KB
testcase_16 AC 33 ms
53,056 KB
testcase_17 AC 34 ms
52,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
ls = [1]*(N)
dic = dict()
for i in range(M):
    a,b = map(int, input().split())
    l = list(map(lambda x :int(x)-1, input().split()))
    a -= 1
    ls[a] = 0
    dic[a] = l

for _ in range(N):
    for i in dic.keys():
        f = True
        for j in dic[i]:
            if ls[j] == 0:
                f = False
                break
        if f:
            ls[i] = 1
            continue
print(ls.count(1))
0