結果

問題 No.679 不思議マーケット
ユーザー titiatitia
提出日時 2024-09-16 01:58:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 385 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 81,928 KB
実行使用メモリ 69,888 KB
最終ジャッジ日時 2024-09-16 01:58:07
合計ジャッジ時間 2,454 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,456 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 AC 145 ms
69,888 KB
testcase_04 AC 97 ms
64,512 KB
testcase_05 AC 68 ms
66,048 KB
testcase_06 AC 67 ms
64,512 KB
testcase_07 AC 61 ms
62,208 KB
testcase_08 AC 65 ms
63,872 KB
testcase_09 AC 42 ms
51,456 KB
testcase_10 AC 83 ms
61,440 KB
testcase_11 AC 63 ms
62,720 KB
testcase_12 AC 63 ms
63,488 KB
testcase_13 AC 65 ms
63,616 KB
testcase_14 AC 65 ms
63,744 KB
testcase_15 AC 58 ms
61,184 KB
testcase_16 AC 40 ms
51,456 KB
testcase_17 AC 40 ms
51,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
SET=set(range(1,n+1))
FROM=dict()
for i in range(m):
    g,r=map(int,input().split())
    SET.remove(g)
    H=set(map(int,input().split()))
    FROM[g]=H

while SET:
    flag=-1
    for g in FROM:
        if FROM[g]<=SET:
            flag=g
            break

    if flag==-1:
        break
    else:
        SET.add(g)
        del FROM[g]

print(len(SET))
0