-
Notifications
You must be signed in to change notification settings - Fork 8
/
The Minion Game.py
118 lines (71 loc) · 2.21 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# 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.
# Input Format
# A single line of input containing the string .
# Note: The string will contain only uppercase letters: .
# Constraints
# Output Format
# Print one line: the name of the winner and their score separated by a space.
# If the game is a draw, print Draw.
# 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):
s = string
vowels = 'AEIOU'
kevsc = 0
stusc = 0
for i in range(len(s)):
if s[i] in vowels:
kevsc += (len(s)-i)
else:
stusc += (len(s)-i)
if kevsc > stusc:
print "Kevin", kevsc
elif kevsc < stusc:
print "Stuart", stusc
else:
print "Draw"
if __name__ == '__main__':
s = raw_input()
minion_game(s)
# MY Code
# s = input()
# kevin = []
# stuard = []
# subk = []
# subs = []
# for i in range(len(s)):
# if(s[i]=="A" or s[i]=="E" or s[i]=="I" or s[i]=="O" or s[i]=="U"):
# kevin.append(s[i])
# else:
# stuard.append(s[i])
# print(kevin)
# print(stuard)
# for i in range(0,len(s)):
# for j in range(0,len(s)):
# if j ==len(s):
# break
# elif s[i] in kevin:
# subk.append(s[i:j])
# elif s[i] in stuard:
# subs.append(s[i:j])
# print(subk)
# print(subs)