求助!为什么会全WA?

P1319 压缩技术

Minecraft_slime @ 2018-05-17 21:45:47

include<bits/stdc++.h>

using namespace std;

long long s,l,c;

int main()

{

cin>>l;
for(int i=1; i<=l*l; i++)
{
    cin>>s;
    if(i%2!=0)
    {
        for(int j=1; j<=s; j++)
        {
            cout<<"0";
            c++;
            if(c==l && i!=l*l)
            {
                cout<<endl;
                c=0;
            }
        }
    }
    else
    {
        for(int j=1; j<=s; j++)
        {
            cout<<"1";
            c++;
            if(c==l && 1!=l*l)
            {
                cout<<endl;
                c=0;
            }
        }
    }
}

return 0;

}


by 3377萌7733帅 @ 2018-06-09 16:04:08

是不是傻,l*l是总长,不是输入个数


|