QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#412781#6743. water235Guren_WA 1ms3428kbC++202.8kb2024-05-16 19:26:322024-05-16 19:26:33

Judging History

你现在查看的是最新测评结果

  • [2024-05-16 19:26:33]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3428kb
  • [2024-05-16 19:26:32]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
int main()
{
    int n,m;
    cin >> n >> m;
    if(n%2==1)
    {
        int flag = 1;
        for (int i = 1; i <= n;i++)
        {
            if(i%2==1)
            {
            if(flag==1)
            {
                for (int j = 1; j <= m;j++)
                {
                    if(j%2==1)
                    {
                        cout << "1 ";
                    }
                    else 
                    {
                        cout << "0 ";
                    }
                }
                cout << endl;

            }
            if(flag==0)
            {
                for (int j = 1; j <= m; j++)
                {
                    if (j % 2 == 0)
                    {
                        cout << "1 ";
                    }
                    else
                    {
                        cout << "0 ";
                    }
                }
                cout << endl;
            }
            if (flag == 1)
                flag = 0;
            else
                flag = 1;
        }
        
        else 
        {
            for (int j = 1; j <= m;j++){
                cout << "0 ";
            }
            cout << endl;
        }
     
        }
    }
    else 
    {
        int flag = 1;
        for (int i = 1; i <= n-1; i++)
        {
            if (i % 2 == 1)
            {
                if (flag == 1)
                {
                    for (int j = 1; j <= m; j++)
                    {
                        if (j % 2 == 1)
                        {
                            cout << "1 ";
                        }
                        else
                        {
                            cout << "0 ";
                        }
                    }
                    cout << endl;
                }
                if (flag == 0)
                {
                    for (int j = 1; j <= m; j++)
                    {
                        if (j % 2 == 0)
                        {
                            cout << "1 ";
                        }
                        else
                        {
                            cout << "0 ";
                        }
                    }
                    cout << endl;
                }
                if (flag == 1)
                    flag = 0;
                else
                    flag = 1;
            }

            else
            {
                for (int j = 1; j <= m; j++)
                {
                    cout << "0 ";
                }
                cout << endl;
            }
        }
        cout << "1 ";
        for (int i = 1; i <= m - 1;i++)
        {
            cout << "0 ";
        }
        cout << endl;
    }
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Wrong Answer
time: 1ms
memory: 3428kb

input:

2 1

output:

1 
1 

result:

wrong output format Unexpected end of file - int32 expected