-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathblackfriday.java
61 lines (40 loc) · 917 Bytes
/
blackfriday.java
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
import java.util.ArrayList;
import java.util.Scanner;
public class blackfriday {
public static int notRepeated(int a, ArrayList<Integer> b)
{
int counter = 0;
for(int i=0; i < b.size(); i++)
{
if(b.get(i) == a) counter++;
}
//System.out.println(counter);
return counter;
}
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int players = scan.nextInt();
scan.nextLine();
ArrayList<Integer> die = new ArrayList<>();
for(int i=0; i < players; i++)
{
int n = scan.nextInt();
die.add(n);
}
boolean found = false;
for(int i=6; i >= 1; i--)
{
if(notRepeated(i, die) == 1)
{
System.out.println(die.indexOf(i) + 1);
found = true;
break;
}
}
if(!found)
{
System.out.println("none");
}
scan.close();
}
}