我就是5周,粉色。
我之前算了一下。
total_experience = 0
matches = 0
# 前三场比赛,每场1560经验
for _ in range(3):
total_experience += 1560
matches += 1
# 第4至7场比赛,每场780经验
for _ in range(4):
total_experience += 780
matches += 1
# 第8场比赛开始,每场390经验,直到累计达到11500
while total_experience < 11500:
total_experience += 390
matches += 1
print("至少需要完成", matches, "场比赛。")
算下来无非也就是每天下班回家玩3把,玩到经验值折减就休息就行了。不难。