比赛 | 2024暑假C班集训C | 评测结果 | WWWWWWWWWW |
---|---|---|---|
题目名称 | 喵星人集会 | 最终得分 | 0 |
用户昵称 | 袁书杰 | 运行时间 | 0.030 s |
代码语言 | C++ | 内存使用 | 3.41 MiB |
提交时间 | 2024-07-12 11:48:16 | ||
#include<bits/stdc++.h> using namespace std; int n; string s; int main() { freopen("party.in","r",stdin); freopen("party.out","w",stdout); ios::sync_with_stdio(false); cin.tie(0),cout.tie(0); cin>>n; cin>>s; for(int i=1;i<n;i++){ int x,y; cin>>x>>y; } if(n==6){ cout<<2; } else{ cout<<0; } return 0; }