-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathThe_Minion_Game.py
75 lines (53 loc) · 1.75 KB
/
The_Minion_Game.py
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
# Kevin and Stuart want to play the 'The Minion Game'.
# Game Rules
# Both players are given the same string, .
# Both players have to make substrings using the letters of the string .
# Stuart has to make words starting with consonants.
# Kevin has to make words starting with vowels.
# The game ends when both players have made all possible substrings.
# Scoring
# A player gets +1 point for each occurrence of the substring in the string .
# For Example:
# String = BANANA
# Kevin's vowel beginning word = ANA
# Here, ANA occurs twice in BANANA. Hence, Kevin will get 2 Points.
# For better understanding, see the image below:
# banana.png
# Your task is to determine the winner of the game and their score.
# Function Description
# Complete the minion_game in the editor below.
# minion_game has the following parameters:
# string string: the string to analyze
# Prints
# string: the winner's name and score, separated by a space on one line, or Draw if there is no winner
# Input Format
# A single line of input containing the string .
# Note: The string will contain only uppercase letters: .
# Constraints
# Sample Input
# BANANA
# Sample Output
# Stuart 12
# Note :
# Vowels are only defined as . In this problem, is not considered a vowel.
def minion_game(string):
# your code goes here
player1 = 0
player2 = 0
str_len = len(string)
for i in range(str_len):
if s[i] in "AEIOU":
player1 += (str_len)-i
else :
player2 += (str_len)-i
if player1 > player2:
print("Kevin", player1)
elif player1 < player2:
print("Stuart",player2)
elif player1 == player2:
print("Draw")
else :
print("Draw")
if __name__ == '__main__':
s = input()
minion_game(s)