比赛 20161115 评测结果 AWWWAAWWWWWWWWWWWWWW
题目名称 树和机器人 最终得分 15
用户昵称 Hoohan(%Dalao) 运行时间 0.400 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2016-11-15 11:59:12
显示代码纯文本
//trobot.cpp
//By Hoohan
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstdlib>
#include<cstring>
#include<cmath>
using namespace std;
const int maxn=50010;
int n,r,k;
long long ans=0;

int main()
{
	freopen("trobot.in","r",stdin);
	freopen("trobot.out","w",stdout);
	cin>>n>>r>>k;
	int a,b,c;
	for(int i=0;i<n-1;i++)
	{
		cin>>a>>b>>c;
		ans+=c;
	}
	cout<<ans<<endl;
	return 0;
}