Submission #648328

#TimeUsernameProblemLanguageResultExecution timeMemory
648328mychecksedadRed-blue table (IZhO19_stones)C++17
27 / 100
24 ms1296 KiB
/* Author : Mychecksdead */ #include<bits/stdc++.h> #include <ext/pb_ds/tree_policy.hpp> using namespace __gnu_pbds; using namespace std; typedef long long int ll; typedef long double ld; #define MOD (1000000000+7) #define MOD1 (998244353) #define PI 3.1415926535 #define pb push_back #define setp() cout << setprecision(15) #define all(x) x.begin(), x.end() #define oset tree<int, null_type,less_equal<int>, rb_tree_tag,tree_order_statistics_node_update> #define debug(x) cerr << #x << " is " << x << '\n'; const int N = 1e6+100, M = 1e5+10, F = 2147483646, K = 20; int n, m; void solve(){ cin >> n >> m; if(n >= m){ cout << n + (m-1)/2 << '\n'; for(int i = 0; i < n; ++i){ for(int j = 0; j < m; ++j){ cout << (j<(m-1)/2 ? '-' : '+'); } cout << '\n'; } }else{ cout << m + (n-1)/2 << '\n'; for(int i = 0; i < n; ++i){ for(int j = 0; j < m; ++j){ cout << (i<(n-1)/2 ? '+' : '-'); } cout << '\n'; } } } int main(){ cin.tie(0); ios::sync_with_stdio(0); int T = 1, aa; cin >> T;aa=T; while(T--){ // cout << "Case #" << aa-T << ": "; solve(); cout << '\n'; } return 0; }

Compilation message (stderr)

stones.cpp: In function 'int main()':
stones.cpp:47:16: warning: variable 'aa' set but not used [-Wunused-but-set-variable]
   47 |     int T = 1, aa;
      |                ^~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...