汽水瓶(python代码)
摘要:def printf(x):
total = 0
c = x//3
total = total+c
d = x%3
x = d+c
 
汽水瓶(python代码)
摘要:解题思路:注意事项:参考代码while True: n=int(input()) if n==0: break c=0 while n>=3: c=……
汽水瓶——三个空瓶换一瓶汽水
摘要:解题思路:稍微列一下,就很容易发现空瓶数与汽水数之间的关系注意事项:参考代码:for i in range(10): a = int(input()) if a == 0: ……
1072基础解法(Python)
摘要:解题思路:简单思路注意事项:了解divmod()函数的基础用法参考代码:import sysfor line in sys.stdin : bot = int(line) if bot =……
求优化(感觉能优化)
摘要:```python
def ds(a):
sums=0
while a>1:
sums+=int(a/3)
if a%3==1:
……
汽水瓶-题解(Python代码)
摘要:解题思路:注意事项:参考代码:while(1): n=int(input()) if n==0: break else: a=int(n/2) pr……