Submission #995358


Source Code Expand

#include<stdio.h>
#include<string.h>

char inp[16];

int main (void) {
	int m, n, i, j, ox, oy;
	scanf(" %d %d", &m, &n);
	for(i = 0; i < m; i++) {
		for (j = 0; j < n; j++) {
			scanf(" %s", &inp);
			if(!strcmp(inp, "snuke")) {
				ox = i;
				oy = j;
				goto prre;
			}
		}
	}

	prre:
	printf("%c%d\n", 'A' + oy, ox + 1);
	
	return 0;
}

Submission Info

Submission Time
Task A - Where's Snuke?
User MRI729041652
Language C++14 (GCC 5.4.1)
Score 100
Code Size 363 Byte
Status AC
Exec Time 1 ms
Memory 128 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:11:21: warning: format ‘%s’ expects argument of type ‘char*’, but argument 2 has type ‘char (*)[16]’ [-Wformat=]
    scanf(" %s", &inp);
                     ^
./Main.cpp:8:25: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
  scanf(" %d %d", &m, &n);
                         ^
./Main.cpp:11:22: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
    scanf(" %s", &inp);
                      ^

Judge Result

Set Name sample all
Score / Max Score 0 / 0 100 / 100
Status
AC × 2
AC × 9
Set Name Test Cases
sample sample-01.txt, sample-02.txt
all sample-01.txt, sample-02.txt, 01-01.txt, 01-02.txt, 01-03.txt, 01-04.txt, 01-05.txt, 01-06.txt, 01-07.txt
Case Name Status Exec Time Memory
01-01.txt AC 1 ms 128 KB
01-02.txt AC 1 ms 128 KB
01-03.txt AC 1 ms 128 KB
01-04.txt AC 1 ms 128 KB
01-05.txt AC 1 ms 128 KB
01-06.txt AC 1 ms 128 KB
01-07.txt AC 1 ms 128 KB
sample-01.txt AC 1 ms 128 KB
sample-02.txt AC 1 ms 128 KB