問題URL
もっと早いコードがあれば教えていただきたいです。
コード(Java)
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int row = sc.nextInt();
int column = sc.nextInt();
char[][] testList = new char[row][column];
for (int i=0;i < row; i++) {
String textVal = sc.next();
for (int j=0;j < column; j++) {
testList[i][j] = textVal.charAt(j);
}
}
int y = sc.nextInt();
int x = sc.nextInt();
if(testList[y][x] == '.') {
testList[y][x] = '#';
} else if(testList[y][x] == '#') {
testList[y][x] = '.';
}
for (int i=0;i < row; i++) {
System.out.println(testList[i]);
}
}
}