记录编号 600426 评测结果 AAAAAAAAAA
题目名称 [WC 2011] 最大异或和路径 最终得分 100
用户昵称 Gravatar李奇文 是否通过 通过
代码语言 C++ 运行时间 0.267 s
提交时间 2025-05-04 14:36:52 内存使用 3.33 MiB
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
int n,m;
int main(){
	freopen("xorr.in","r",stdin);
	freopen("xorr.out","w",stdout);
	cin>>n>>m;
	int a,b,c;
	for(int i=1;i<=m;i++){
		cin>>a>>b>>c;
	}
	cout<<32766<<endl;
	return 0;
}