Submission #991390


Source Code Expand

import java.io.*;
import java.util.*;
 
public class Main{
	public void solve(){
		int H = nextInt();
		int W = nextInt();
		for(int i = 0; i < H; i++){
			for(int j = 0; j < W; j++){
				if(next().equals("snuke")){
					out.print((char)(j + 'A'));
					out.println(i + 1);
				}
			}
		}
		
	}
	
	private static PrintWriter out;
	public static void main(String[] args){
		out = new PrintWriter(System.out);
		new Main().solve();
		out.flush();
	}
	
	
	
	public static int nextInt(){
		int num = 0;
		String str = next();
		boolean minus = false;
		int i = 0;
		if(str.charAt(0) == '-'){
			minus = true;
			i++;
		}
		int len = str.length();
		for(;i < len; i++){
			char c = str.charAt(i);
			if(!('0' <= c && c <= '9')) throw new RuntimeException();
			num = num * 10 + (c - '0');
		}
		return minus ? -num : num;
	}
	
	public static long nextLong(){
		long num = 0;
		String str = next();
		boolean minus = false;
		int i = 0;
		if(str.charAt(0) == '-'){
			minus = true;
			i++;
		}
		int len = str.length();
		for(;i < len; i++){
			char c = str.charAt(i);
			if(!('0' <= c && c <= '9')) throw new RuntimeException();
			num = num * 10l + (c - '0');
		}
		return minus ? -num : num;
	}
	public static String next(){
		int c;
		while(!isAlNum(c = read())){}
		StringBuilder build = new StringBuilder();
		build.append((char)c);
		while(isAlNum(c = read())){
			build.append((char)c);
		}
		return build.toString();
	}
	
	
	private static byte[] inputBuffer = new byte[1024];
	private static int bufferLength = 0;
	private static int bufferIndex = 0;
	private static int read(){
		if(bufferLength < 0) throw new RuntimeException();
		if(bufferIndex >= bufferLength){
			try{
				bufferLength = System.in.read(inputBuffer);
				bufferIndex = 0;
			}catch(IOException e){
				throw new RuntimeException(e);
			}
			if(bufferLength <= 0) return (bufferLength = -1);
		}
		return inputBuffer[bufferIndex++];
	}
	
	private static boolean isAlNum(int c){
		return '!' <= c && c <= '~';
	}
}

Submission Info

Submission Time
Task A - Where's Snuke?
User a3636tako
Language Java8 (OpenJDK 1.8.0)
Score 100
Code Size 2084 Byte
Status AC
Exec Time 138 ms
Memory 8396 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 138 ms 8144 KB
01-02.txt AC 94 ms 8016 KB
01-03.txt AC 95 ms 8140 KB
01-04.txt AC 96 ms 8140 KB
01-05.txt AC 101 ms 8396 KB
01-06.txt AC 100 ms 8272 KB
01-07.txt AC 94 ms 8148 KB
sample-01.txt AC 94 ms 8148 KB
sample-02.txt AC 103 ms 8016 KB