Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
52431 AK2022071318 子网 C++ 解答错误 65 13 MS 256 KB 309 2022-07-19 12:10:10

Tests(13/20):


#include <bits/stdc++.h> using namespace std; int n,m,tot,x,k; bool t[8005]; int main() { cin>>n>>m; for(int i=1; i<=m; i++) { cin>>k; for(int j=1; j<=k; j++) { cin>>x; t[x]++; } } for(int i=1; i<=n; i++) if(t[i]) tot++; cout<<tot/2; }


测评信息: