Submission #4284835
Source Code Expand
Copy
#include <bits/stdc++.h>
using namespace std;
#define NDEBUG
#include <cassert>
typedef long long ll;
typedef long double Double;
typedef unsigned long long ull;
typedef pair<int,int> ii;
typedef pair<ll,ll> llll;
typedef pair<double,double> dd;
typedef vector<int> vi;
typedef vector<vector<int>> vvi;
typedef vector<ii> vii;
typedef vector<vector<ii>> vvii;
typedef vector<ll> vll;
typedef vector<string> vs;
typedef vector<double> vd;
typedef vector<long double> vD;
#define sz(a) int((a).size())
#define pb push_back
#define eb emplace_back
#define FOR(var,from,to) for(int var=(from);var<=(to);++var)
#define rep(var,n) for(int var=0;var<(n);++var)
#define rep1(var,n) for(int var=1;var<=(n);++var)
#define repC2(vari,varj,n) for(int vari=0;vari<(n)-1;++vari)for(int varj=vari+1;varj<(n);++varj)
#define ALL(c) (c).begin(),(c).end()
#define RALL(c) (c).rbegin(),(c).rend()
#define tr(i,c) for(auto i=(c).begin(); i!=(c).end(); ++i)
#define found(s,e) ((s).find(e)!=(s).end())
#define mset(arr,val) memset(arr,val,sizeof(arr))
#define mid(x,y) ((x)+((y)-(x))/2)
#define IN(x,a,b) ((a)<=(x)&&(x)<=(b))
#define cons make_pair
#define PQ(T) priority_queue<T>
#define RPQ(T) priority_queue<T,vector<T>,greater<T>>
template<class T> inline void amin(T & a, T const & b) { a = min(a, b); }
template<class T> inline void amax(T & a, T const & b) { a = max(a, b); }
inline ll square(ll x) { return x * x; }
inline ll gcd(ll a, ll b) { while(a) swap(a, b%=a); return b; }
template <typename T>
inline T mod(T a, T b) { return ((a % b) + b) % b; }
int main() {
int N,M; scanf("%d%d", &N,&M);
vi ko(M+1, 0);
rep(i,N){
int Ki; scanf("%d", &Ki);
rep(j,Ki) {
int Aij; scanf("%d", &Aij);
ko[Aij]++;
}
}
int ans = 0;
rep(i,M+1){
if (ko[i] == N) ++ans;
}
printf("%d\n", ans);
return 0;
}
Submission Info
Submission Time
2019-02-16 21:26:38+0900
Task
B - Foods Loved by Everyone
User
naoya_t
Language
C++14 (GCC 5.4.1)
Score
200
Code Size
1958 Byte
Status
AC
Exec Time
1 ms
Memory
256 KB
Compile Error
./Main.cpp: In function ‘int main()’:
./Main.cpp:54:34: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
int N,M; scanf("%d%d", &N,&M);
^
./Main.cpp:57:33: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
int Ki; scanf("%d", &Ki);
^
./Main.cpp:59:39: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
int Aij; scanf("%d", &Aij);
^
Judge Result
Set Name
All
Sample
Score / Max Score
200 / 200
0 / 0
Status
Set Name
Test Cases
All
0_random_1, 0_random_2, 1_max_1, 1_max_2, 2_nmin_1, 3_mmin_1, 4_corner_1, 4_corner_2, 4_corner_3, 5_hand_1, 5_hand_2, 5_hand_3, sample_01, sample_02, sample_03
Sample
sample_01, sample_02, sample_03
Case Name
Status
Exec Time
Memory
0_random_1
AC
1 ms
256 KB
0_random_2
AC
1 ms
256 KB
1_max_1
AC
1 ms
256 KB
1_max_2
AC
1 ms
256 KB
2_nmin_1
AC
1 ms
256 KB
3_mmin_1
AC
1 ms
256 KB
4_corner_1
AC
1 ms
256 KB
4_corner_2
AC
1 ms
256 KB
4_corner_3
AC
1 ms
256 KB
5_hand_1
AC
1 ms
256 KB
5_hand_2
AC
1 ms
256 KB
5_hand_3
AC
1 ms
256 KB
sample_01
AC
1 ms
256 KB
sample_02
AC
1 ms
256 KB
sample_03
AC
1 ms
256 KB