# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
918608 | 2024-01-30T07:29:22 Z | AnarTz | Red-blue table (IZhO19_stones) | C++14 | 174 ms | 201724 KB |
#include <iostream> #include <vector> #include <math.h> #include <algorithm> using namespace std; int main(){ int t; string s="",o = "+",s1=""; cin >> t; while(t--){ int n,m,i,c,b; cin >> n >> m; bool row=true; if (m>n) { c=n-(n/2+1); b=m+c; row=true; }else{ c=m-(m/2+1); b=n+c; row=false; } cout << b<<endl; if (row==true) { for (i = 0; i < m; i++) { s=s+o; s1=s1+"-"; } }else{ for (i = 0; i < m; i++) { s=s+o; if (s.size()==m/2+1) { o = "-"; } } } if (row==true) { for (i = 0; i < n; i++) { cout << s1<<endl; if (i==n/2) { s1=s; } } }else{ for (i = 0; i < n; i++) { cout << s<<endl; } } } return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 344 KB | Wrong answer |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 13 ms | 10076 KB | Wrong answer |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 344 KB | Wrong answer |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 174 ms | 201724 KB | Wrong answer in test 97 21: 107 < 116 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 53 ms | 54352 KB | Wrong answer in test 24 24: 35 < 44 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 344 KB | Wrong answer |
2 | Halted | 0 ms | 0 KB | - |