Dystopian II
Submit solution
Points:
1
Time limit:
2.0s
Memory limit:
256M
Author:
Problem type
Allowed languages
C, C++, Java, Python
Dystopian Land of Fives Part 2: The Remaining Drones
The keypad malfunctioned the last minute and some of the drones didn't get destroyed and Brooke is on the run again! This time she comes across another human-made shelter with another special keypad.
This keypad consists of non-negative integers and Brooke has to determine if the sum of the
non-negative integers is not divisible by 5 to destroy the drones. Brooke, however, is exhausted from the run again and needs your help!
Input
The first line contains an integer . The next line contains
space-seperated integers
.
Output
If the sum of the numbers is not divisible by 5, print "Slay!" in one line. Otherwise, print "Cooked :(".
Examples
Input 1
5
3 10 2 5 6
Output 1
Slay!
Input 2
5
3 10 2 5 5
Output 2
Cooked :(
Comments