Online JudgeProblem SetAuthorsOnline ContestsUser
Web Board
Home Page
F.A.Qs
Statistical Charts
Problems
Submit Problem
Online Status
Prob.ID:
Register
Update your info
Authors ranklist
Current Contest
Past Contests
Scheduled Contests
Award Contest
User ID:
Password:
  Register

线扫,少了要加,多了要倒,损耗一样

Posted by uuuouou at 2014-12-24 21:36:03 on Problem 2940
#include <cstdio>

typedef __int64 LL;

int main()
{
	int n, v;
	LL s, r;

	while(scanf("%d", &n), n){
		//initialize
		r = s = 0;
		//input and process
		while(n--){
			scanf("%d", &v);
			r += s < 0 ? -s : s;
			s += v;
		}
		//print result
		printf("%I64d\n", r);
	}
	return 0;	
}

Followed by:

Post your reply here:
User ID:
Password:
Title:

Content:

Home Page   Go Back  To top


All Rights Reserved 2003-2013 Ying Fuchen,Xu Pengcheng,Xie Di
Any problem, Please Contact Administrator