问题标题: 酷町堂:1078&1747

0
0

0
王文博
王文博
缔造者之神
缔造者之神

1078:

先判断能吃多少块。如果正好整除,就不用+1,否则+1(判断y/x==0)

如果总块数-吃掉的>=a

就输出它;否则输出0.

1747:

分段收费,按段来

0
0
朱小川
朱小川
缔造者
缔造者

1078  核心

if(y%x!=0){ s=y/x+1; }else{ s=y/x; }if(n-s>0){ cout<<n-s; }else{ cout<<0; }

 

1747  核心

if(a==10){ cout<<3; }else if(a>10 && a<=24){ cout<<3+(a-10)/2; }else{ cout<<10+(a-24)/3; }

我要回答