|
link to this page:
http://pastebin.antiyes.com/index354.html
download this file: click here
|
description/question:
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
| |
import java.io.*;
import java.util.*;
import java.util.List;
import java.awt.*;
public class Main {
static Point size;
static Point robot;
static String robotHeading;
static String robotCommands;
static List<Point> robotsLost;
public static void main(String[] args) {
BufferedReader stdIn = new BufferedReader(new InputStreamReader(System.in));
String s;
try {
s = stdIn.readLine();
Scanner sc = new Scanner(s);
size.x = sc.nextInt();
size.y = sc.nextInt();
System.out.printf("size %d %d\n", size.x, size.y);
robotsLost = new ArrayList<Point>();
while ((s = stdIn.readLine()) != null) {
Scanner sc1 = new Scanner(s);
robot.x = sc1.nextInt();
robot.y = sc1.nextInt();
robotHeading = sc1.next();
robotCommands = stdIn.readLine();
System.out.printf("robot position %d %d %s\n",
robot.x, robot.y, robotHeading);
System.out.printf("commands %s\n", robotCommands);
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
|
|
|
|
|