Submission #991295


Source Code Expand

#define _CRT_SECURE_NO_WARNINGS
#include "bits/stdc++.h"
using namespace std;

#define int int64_t

#define CHOOSE(a) CHOOSE2 a
#define CHOOSE2(a0,a1,a2,a3,x,...) x
#define REP1(i, s, cond, cal) for (signed i = signed(s); i cond; i cal)
#define REP2(i, s, n) REP1(i, s, < signed(n), ++)
#define REP3(i, n) REP2(i, 0, n)
#define rep(...) CHOOSE((__VA_ARGS__,REP1,REP2,REP3))(__VA_ARGS__)
#define rrep(i, s) rep(i, s, >= 0, --)

#define all(c) begin(c), end(c)
#define maxup(ans, x) (ans = (ans < x ? x : ans))
#define minup(ans, x) (ans = (ans > x ? x : ans))

#define breakif(cond) if(cond) break; else

using VV = vector<vector<int>>;
using V = vector<int>;
using P = pair<int, int>;
using IP = pair<int, P>;

template<typename T>
inline void input(vector<T>& v) { for (auto& x : v) cin >> x; }

signed main() {
	int h, w; cin >> h >> w;
	rep(i, h) rep(j, w) {
		string s; cin >> s;
		if (s == "snuke") {
			cout << (char)(i + 'A') << j + 1 << endl;
		}
	}
	system("pause");
}

Submission Info

Submission Time
Task A - Where's Snuke?
User tosaka2
Language C++14 (GCC 5.4.1)
Score 0
Code Size 1014 Byte
Status WA
Exec Time 68 ms
Memory 1012 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:37:17: warning: ignoring return value of ‘int system(const char*)’, declared with attribute warn_unused_result [-Wunused-result]
  system("pause");
                 ^

Judge Result

Set Name sample all
Score / Max Score 0 / 0 0 / 100
Status
AC × 1
WA × 1
AC × 3
WA × 6
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 68 ms 1012 KB
01-02.txt AC 4 ms 504 KB
01-03.txt WA 4 ms 504 KB
01-04.txt WA 4 ms 504 KB
01-05.txt WA 4 ms 504 KB
01-06.txt WA 4 ms 504 KB
01-07.txt WA 4 ms 504 KB
sample-01.txt WA 4 ms 504 KB
sample-02.txt AC 4 ms 504 KB