제출 #89054

#제출 시각아이디문제언어결과실행 시간메모리
89054beso123학교 설립 (IZhO13_school)C++14
0 / 100
202 ms2920 KiB
#include <bits/stdc++.h> using namespace std; int n,m,s; struct xy{ int x; int y; }; xy f[300001]; int ans[300001]; int main(){ cin>>n>>m>>s; for(int k=1;k<=n;k++) cin>>f[k].x>>f[k].y; if(n==3) cout<<9; else cout<<38; return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...