会不会有400年再闰的情况
by 温情ღ @ 2019-10-05 19:10:49
@[AK的小号](/space/show?uid=262169)
题目中说了
> 以上规则不适合于世纪年。可以被400整除的世纪年为闰年,否则为平年。所以,1700,1800,1900和2100年是平年,而2000年是闰年.
by resftlmuttmotw @ 2019-10-05 19:11:37
@[resftlmuttmotw](/space/show?uid=73992) leap错了
by bellmanford @ 2019-10-05 19:22:48
@[resftlmuttmotw](/space/show?uid=73992) 应该是
```cpp
inline bool leap(int x)
{
if(x % 100 == 0)
{
if(x % 400 == 0) return 1;
return 0;
}
if(x % 4 == 0) return 1;
return 0;
}
```
by bellmanford @ 2019-10-05 19:23:25
@[resftlmuttmotw](/space/show?uid=73992) [帮个忙吧](https://www.luogu.org/discuss/show/150948)
by bellmanford @ 2019-10-05 19:24:59
@[bellmanford](/space/show?uid=116015)
好有道理啊
a % 4 = 0&&a % 100 = 0
不等于a % 400 = 0
lcm(4,100)=100呢
%%%%%%
by resftlmuttmotw @ 2019-10-05 19:26:36
@[bellmanford](/space/show?uid=116015)
尴尬 样例还是错的
我这道题A了就帮您看看如何
by resftlmuttmotw @ 2019-10-05 19:29:51
在看
by bellmanford @ 2019-10-05 19:43:21
。。。感觉没问题啊
by bellmanford @ 2019-10-05 19:59:27
@[bellmanford](/space/show?uid=116015)
那边我帮您看出来了
by resftlmuttmotw @ 2019-10-05 19:59:46