解题思路:
注意事项:
参考代码:
def cal(temp): r_index = temp.index('r') b_index = temp.index('b') cnt = 0 if temp[0] == 'w': if r_index < b_index: cnt = b_index else: cnt = r_index elif temp[0] == 'r': cnt = b_index elif temp[0] == 'b': cnt = r_index return cnt def f(s): ans = 0 for i in range(len(s)): temp = s[i:]+s[:i] lcnt = cal(temp) temp = temp[::-1] rcnt = cal(temp) if lcnt+rcnt > ans: ans = lcnt + rcnt print(ans) if __name__ == '__main__': s = input().strip() f(s)
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题10.5 (C语言代码)浏览:1484 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:633 |
C语言程序设计教程(第三版)课后习题6.10 (C语言代码)浏览:1090 |
简单的a+b (C语言代码)浏览:560 |
C语言训练-数字母 (C语言代码)浏览:648 |
C语言程序设计教程(第三版)课后习题5.6 (C语言代码)浏览:537 |
1071题解浏览:584 |
C二级辅导-温度转换 (C语言代码)浏览:802 |
格式化数据输出 (C语言代码)浏览:882 |
盐水的故事 (C语言代码)浏览:1602 |