forked from RiviereGregory/CodinGame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Skynet-Le_Saut.txt
80 lines (67 loc) · 2.35 KB
/
Skynet-Le_Saut.txt
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
import java.util.*;
import java.io.*;
import java.math.*;
class Player {
public static void main(String args[]) {
Scanner in = new Scanner(System.in);
int longPont = in.nextInt();
int longGouffre = in.nextInt();
int longPlateforme = in.nextInt();
DonneeSaut donneeSaut = new DonneeSaut(longPont,longGouffre,longPlateforme);
// System.out.println(longPont +" - "+ longGouffre +" - "+ longPlateforme);
//System.out.println(factoriel(4));
while (true) {
// Read information from standard input
int vitesse = in.nextInt();
int position = in.nextInt();
DonneeMoto donneeMoto = new DonneeMoto(vitesse,position);
//System.out.println(vitesse +" - "+ position );
String choix = choixAction(donneeSaut,donneeMoto);
// System.err.println("Debug messages...");
// Write action to standard output
System.out.println(choix);
}
}
public static String choixAction(DonneeSaut donneeSaut, DonneeMoto donneeMoto){
if(donneeSaut.longPont > (donneeMoto.position + donneeMoto.vitesse - 1 )){
if (donneeSaut.longGouffre > (donneeMoto.vitesse - 1)){
return "SPEED";
}else if((donneeSaut.longPlateforme > (factoriel(donneeMoto.vitesse)))){
return "SPEED";
}else if((donneeSaut.longPlateforme < (factoriel(donneeMoto.vitesse)-1))){
return "SLOW";
}else{
return "WAIT";
}
}else if((donneeSaut.longPont + donneeSaut.longGouffre) < (donneeMoto.position)+1){
return "SLOW";
}else{
return "JUMP";
}
//return "WAIT";
}
public static int factoriel(int x){
if(x == 1){
return 1;
}
return (x + factoriel(x-1));
}
}
class DonneeMoto{
public int vitesse;
public int position;
DonneeMoto( int vitesse,int position){
this.vitesse = vitesse;
this.position = position;
}
}
class DonneeSaut{
public int longPont;
public int longGouffre;
public int longPlateforme;
DonneeSaut( int pont,int gouffre,int plateforme){
longPont = pont;
longGouffre = gouffre;
longPlateforme = plateforme;
}
}