Submission #110496

#TimeUsernameProblemLanguageResultExecution timeMemory
110496tjd229Untitled (GCJ18Q_gogopher)C++14
0 / 30
2 ms256 KiB
#include <stdio.h> int mp[1001][1001]; int main() { int i, T, A; for (int tc = 1; tc <= T; ++tc) { int dig = 0; for (scanf("%d", &A), i = 2; dig < A; i += 3, dig += 9) { int valid = 0; while (valid < 9) { printf("%d %d", i, i); fflush(stdout); int i_, j_; scanf("%d%d",&i_,&j_); valid += mp[i_][j_] != tc; mp[i_][j_] = tc; } } } return 0; }

Compilation message (stderr)

gogopher.cpp: In function 'int main()':
gogopher.cpp:7:23: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   for (scanf("%d", &A), i = 2; dig < A; i += 3, dig += 9) {
        ~~~~~~~~~~~~~~~^~~~~~~
gogopher.cpp:11:22: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     int i_, j_; scanf("%d%d",&i_,&j_);
                 ~~~~~^~~~~~~~~~~~~~~~
gogopher.cpp:5:22: warning: 'T' is used uninitialized in this function [-Wuninitialized]
  for (int tc = 1; tc <= T; ++tc) {
                   ~~~^~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...