이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
void solve()
{
ll n,m,k;
cin>>n>>m>>k;
if(k > floor(n/2) * floor(m/2))
{
cout<<"NO"<<endl;
return ;
}
cout<<"YES"<<endl;
ll x = 0,y = 0,s = 0;
for(ll i = 0;i < n;i++)
{
for(ll j = 0;j < m;j+=2)
{
if(y != k)y++;
cout<<y<<" "<<y<<" ";
}
if(m % 2 == 1)cout<<y;
cout<<endl;
if(s == 0)
{
s++;
y = x;
}
else
{
s = 0;
if(y == k)y = x;
else x = y;
}
}
return ;
}
int main()
{
ll t;
cin>>t;
while(t--)solve();
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |