比赛 CSP2023-J模拟赛 评测结果 TTTTTTTTTT
题目名称 新建题目 最终得分 0
用户昵称 88ralei 运行时间 10.000 s
代码语言 C++ 内存使用 5.74 MiB
提交时间 2023-10-18 19:21:36
显示代码纯文本
#include<iostream>
#include<queue>
using namespace std;
inline int read(){
	char ch;
	int x=0,w=1;
	while(ch<'0'||ch>'9'){
		if(ch=='-')w=-1;
		ch=getchar();
	}
	while(ch>='0'&&ch<='9'){
		x=x*10+(ch-'0');
		ch=getchar();
	}
	return x*w;
}
int main(){
//	freopen("touch.in","r",stdin);
//	freopen("touch.out","w",stdout);
	int n=read();
	for(register int i=1;i<=n;i++){
		int a=read();
	}
	for(register int i=1;i<=n-1;i++){
		int a=read();int b=read();
	}
	cout<<3;
	return 0;
}