码迷,mamicode.com
首页 > 其他好文 > 详细

七夕专场-F题

时间:2014-08-03 15:03:05      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   for   div   log   

LH很聪明。每次这种题目,他想想就有结果了,我得琢磨一阵才恍然大悟。诶,智商不在一个等级啊。其实是用做差,一直用新读入的减去前面2个数之差。sum为0就满足。

#include<iostream>
using namespace std;
int g[10010];
int main()
{
    int t,m;
    cin >> t;
    while(t--)
    {
        cin >> m;
        int sum = 0;
        for(int i = 0;i <m;i++)
        {

            cin >> g[i];
            sum =+ g[i] - sum;
        }
        if(sum == 0)
        {
            cout << "YES" << endl;
        }
        else
        {

            cout << "NO" <<endl;
        }

    }
    return 0;

}

 

七夕专场-F题,布布扣,bubuko.com

七夕专场-F题

标签:style   blog   color   os   io   for   div   log   

原文地址:http://www.cnblogs.com/hhhhhhhhhhhhhhhhhhhhhhhhhhh/p/3888311.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!