Submission #110496

# Submission time Handle Problem Language Result Execution time Memory
110496 2019-05-11T03:57:45 Z tjd229 Go, Gopher! (GCJ18Q_gogopher) C++14
0 / 30
2 ms 256 KB
#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

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 time Memory Grader output
1 Incorrect 2 ms 256 KB Unexpected end of file - token expected
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 256 KB Unexpected end of file - token expected