Submission #167848

#TimeUsernameProblemLanguageResultExecution timeMemory
167848YottaByteRed-blue table (IZhO19_stones)C++14
0 / 100
49 ms1376 KiB
#include <iostream> using namespace std; #define ll long long #define sz(x) (int)x.size() #define pii pair < int, int > #define endl "\n" #define METH ios::sync_with_stdio(0); cin.tie(0); #define BEGIN cout << "BEGIN" << endl; #define END cout << "END" << endl; const int mod = 1e9 + 7; /// ANOTHER HASH MOD: 228228227 const int prime = 29; /// ANOTHER HASH PRIME: 997 const int INF = ((long long) 0xCAFEBABE - 1e9 - 4e8); int n, m; inline void purify() { } inline void precalc() { } inline void read() { scanf("%d %d", &n, &m); } inline void solve() { char a, b; if (n < 3 || m < 3) { cout << max(n, m) << endl; if (m <= n) { for (int i = 1; i <= n; i++) { for (int j = 1; j <= m; j++) { cout << '+'; } cout << endl; } } else { for (int i = 1; i <= n; i++) { for (int j = 1; j <= m; j++) { cout << '-'; } cout << endl; } } return; } for (int i = 1; i <= n; i++) { cout << a; for (int j = 1; j <= m - 2; j++) { if (i <= n / 2) { cout << a; } else { cout << b; } } cout << a << endl; } } int main() { int t; scanf("%d", &t); //precalc(); while (t--) { //purify(); read(); solve(); } }

Compilation message (stderr)

stones.cpp: In function 'int main()':
stones.cpp:70:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d", &t);
  ~~~~~^~~~~~~~~~
stones.cpp: In function 'void read()':
stones.cpp:26:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d %d", &n, &m);
  ~~~~~^~~~~~~~~~~~~~~~~
stones.cpp: In function 'int main()':
stones.cpp:30:7: warning: 'a' may be used uninitialized in this function [-Wmaybe-uninitialized]
  char a, b;
       ^
stones.cpp:30:10: warning: 'b' may be used uninitialized in this function [-Wmaybe-uninitialized]
  char a, b;
          ^
#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...