Submission #7903004


Source Code Expand

#include <bits/stdc++.h>
#define REP(i, n) for(int i = 0; i < n; i++)
#define ALL(v) (v).begin(), (v).end()

using namespace std;
using ll = long long;

int main()
{
  int H, W; cin >> H >> W;
  for (int i = 0; i < H; ++i) {
    for (int j = 0; j < W; ++j) {
      string s; cin >> s;
      if (s == "snuke") {
        printf("%s\n", j+'A', i+1);
      }
    }
  }
}

Submission Info

Submission Time
Task A - Where's Snuke?
User maya2250
Language C++14 (GCC 5.4.1)
Score 0
Code Size 384 Byte
Status RE
Exec Time 98 ms
Memory 256 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:15:34: warning: format ‘%s’ expects argument of type ‘char*’, but argument 2 has type ‘int’ [-Wformat=]
         printf("%s\n", j+'A', i+1);
                                  ^
./Main.cpp:15:34: warning: too many arguments for format [-Wformat-extra-args]

Judge Result

Set Name sample all
Score / Max Score 0 / 0 0 / 100
Status
RE × 2
RE × 11
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, sample-01.txt, sample-02.txt
Case Name Status Exec Time Memory
01-01.txt RE 97 ms 256 KB
01-02.txt RE 98 ms 256 KB
01-03.txt RE 97 ms 256 KB
01-04.txt RE 97 ms 256 KB
01-05.txt RE 97 ms 256 KB
01-06.txt RE 98 ms 256 KB
01-07.txt RE 98 ms 256 KB
sample-01.txt RE 98 ms 256 KB
sample-02.txt RE 97 ms 256 KB