Submission #500833

#TimeUsernameProblemLanguageResultExecution timeMemory
500833EliteCallsYouRed-blue table (IZhO19_stones)C++17
0 / 100
40 ms1232 KiB
# include <bits/stdc++.h> using namespace std ; //############################################################################ # define read(a)/**/for(int i=0;i<int(sizeof(a)/sizeof(a[0]));i++){cin>>a[i];} # define print(x)/**/for(auto zx:x){cout<<zx<<' ';} const char* tochar(string a){return a.c_str();} void files(){freopen("planting.in","r",stdin);freopen("planting.out","w",stdout);} void speed(){ios_base::sync_with_stdio(false);cin.tie(0);} long long gcd(long long a,long long b){if(!b){return a;}a%=b;return gcd(b,a);} long long lcm(long long a,long long b){return a /gcd(a,b) * b;} //########################################################################### const int N = 3e5 + 5 ; const long long MOD = 1e17+7 ; //########################################################################### void hack(){ int n, m ; cin >> n >> m ; cout << max(n,m)+min(n,m)/2 << '\n' ; if ( n >= m ){ for ( int i = 0 ; i < n ; i ++ ){ for ( int j = 0 ; j < m ; j ++ ){ if ( !(j%2) ){ cout << '+' ; } else{ cout << '-' ; } }cout << '\n' ; } } else{ for ( int i = 0 ; i < n ; i ++ ){ for ( int j = 0 ; j < m ; j ++ ){ if ( !(i%2) ){ cout << '-' ; } else{ cout << '+' ; } }cout << '\n' ; } } } //########################################################################### int main(){ int t ; cin >> t ; while ( t -- ){hack();} }

Compilation message (stderr)

stones.cpp: In function 'void files()':
stones.cpp:7:21: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
    7 | void files(){freopen("planting.in","r",stdin);freopen("planting.out","w",stdout);}
      |              ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
stones.cpp:7:54: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
    7 | void files(){freopen("planting.in","r",stdin);freopen("planting.out","w",stdout);}
      |                                               ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
#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...