# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
742325 | 2023-05-16T06:05:22 Z | salmon | Gardening (RMI21_gardening) | C++14 | 12 ms | 5332 KB |
#include <bits/stdc++.h> using namespace std; int t; int N,M,K; vector<int> lst[200100]; int main(){ scanf(" %d",&t); while(t--){ scanf(" %d",&N); scanf(" %d",&M); scanf(" %d",&K); if(M * (long long int) N > 200000 || N % 2 == 1 || M % 2 == 1 || (N * M / 4 - K) % 2 != 0){ printf("NO\n"); continue; } if(N == 2 && M == 2){ if(K == 1){ printf("YES\n"); printf("1 1\n1 1\n"); } else{ printf("NO\n"); } } else if(N == 2 && M == 4){ if(K == 2){ printf("YES\n"); printf("1 1 2 2\n1 1 2 2\n"); } else{ printf("NO\n"); } } else if(N == 4 && M == 2){ if(K == 2){ printf("YES\n"); printf("1 1\n1 1\n2 2\n2 2\n"); } else{ printf("NO\n"); } } else{ if(K == 4){ printf("YES\n"); printf("1 1 4 4\n1 1 4 4\n2 2 3 3\n2 2 3 3\n"); } else if(K == 2){ printf("YES\n"); printf("1 1 1 1\n1 2 2 1\n1 2 2 1\n1 1 1 1\n"); } else{ printf("NO\n"); } } } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 12 ms | 5332 KB | Correct! Azusa and Laika like the garden :) |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 12 ms | 5332 KB | Correct! Azusa and Laika like the garden :) |
2 | Failed | 3 ms | 4948 KB | Incorrect output |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 12 ms | 5332 KB | Correct! Azusa and Laika like the garden :) |
2 | Failed | 3 ms | 4948 KB | Incorrect output |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Failed | 3 ms | 4948 KB | Incorrect output |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Failed | 4 ms | 4948 KB | Incorrect output |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 12 ms | 5332 KB | Correct! Azusa and Laika like the garden :) |
2 | Failed | 3 ms | 4948 KB | Incorrect output |
3 | Halted | 0 ms | 0 KB | - |