A問題 動物園
1 2 3 4 5 6 7 |
a,b,c,k = map(int,input().split()) s,t = map(int, input().split()) if s+t >= k: print(a*s+b*t-((s+t)*c)) else: print(a*s+b*t) |
1 2 3 4 5 6 7 |
a,b,c,k = map(int,input().split()) s,t = map(int, input().split()) if s+t >= k: print(a*s+b*t-((s+t)*c)) else: print(a*s+b*t) |
コメント