Submission #345313

#TimeUsernameProblemLanguageResultExecution timeMemory
345313shmadUFO (IZhO14_ufo)C++14
0 / 100
176 ms3592 KiB

#include <bits/stdc++.h>
 
#define nl '\n'
#define pb push_back
#define E exit(0)
#define all(v) v.begin(),v.end()
#define ff first
#define ss second
#define sz(s) (s).size()

using namespace std;
using ll=long long;
using pii=pair<int,int>;
using pll=pair<ll,ll>;
 
const int N=1e6+5;
const int INF=1e9+7;
const int eps=1e-6;

void solve() {
	int n,m,r,k,p;
	cin>>n>>m>>r>>k>>p;
	for (int i=1;i<=n;i++) {
		for (int j=1;j<=m;j++) {
			int a;
			cin>>a;
		}
	}
	for (int i=1;i<=k;i++) {
		string s;
		int a,b;
		cin>>s>>a>>b;
	}
	cout<<k;
	cout<<nl;
}

ll test=1;

int main () {
//	freopen(".in","r",stdin);
//	freopen(".out","w",stdout);
    ios_base::sync_with_stdio(0);
	cin.tie();
//	cin>>test;
    while (test--) solve();
    return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...