Online Judge | Problem Set | Authors | Online Contests | User | ||||||
---|---|---|---|---|---|---|---|---|---|---|
Web Board Home Page F.A.Qs Statistical Charts | Current Contest Past Contests Scheduled Contests Award Contest |
线扫,少了要加,多了要倒,损耗一样#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: |
All Rights Reserved 2003-2013 Ying Fuchen,Xu Pengcheng,Xie Di
Any problem, Please Contact Administrator