Submission #992743


Source Code Expand

#include <stdio.h>

int main(void)
{
    int H, W, i, k, b;
    char a, n[6];
    scanf("%d %d ", &H, &W);

    for (i = 0; i < H*W; i++) {
        for (k = 0; k < 6; k++) {
            n[k] = getchar();
        }
        if (n[0] == 's' && n[1] == 'n' && n[2] == 'u'
        && n[3] == 'k' && n[4] == 'e') {
            a = 'A'+(i%W);
            b = (i/W)+1;
        }
    }
    printf("%C%d", a, b);
    return 0;
}

Submission Info

Submission Time
Task A - Where's Snuke?
User shimada_alice
Language C (Clang 3.8.0)
Score 100
Code Size 440 Byte
Status AC
Exec Time 1 ms
Memory 128 KB

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