日期模拟器(改变check即可 手切日期)
Posted 混个样子出来
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了日期模拟器(改变check即可 手切日期)相关的知识,希望对你有一定的参考价值。
目录
含 2 天数
https://www.lanqiao.cn/problems/1038/learning/
小蓝特别喜欢 2,今年是公元 2020 年,他特别高兴,因为每天日历上都可以看到 22。
如果日历中只显示年月日,请问从公元 1900 年 1 月 1 日到公元 9999 年 12 月 31 日,一共有多少天日历上包含 2。即有多少天中年月日的数位中包含数字 2。
运行限制
- 最大运行时间:1s
- 最大运行内存: 128M
public class Main
static int[] w= 0,31,28,31,30,31,30,31,31,30,31,30,31;
static int y=1900,m=1,d=1;
public static void main(String[] args)
int ans=0;
//三个或,只要有一个成立就会执行 直到9999年12月31日
while(y!=9999||m!=12||d!=31)
//是否闰年
if(y%400==0||(y%4==0&&y%100!=0)) w[2]=29;
else w[2]=28;
if(check()) ans++;
//接下来日期变更
d++;
if(d>w[m])
m++;
d=1;
if(m>12)
m=1;
y++;
//最后一天并没有判断其中12月有个2
System.out.println(ans+1);
static boolean check()
//判断年
int a=y;
while(a>0)
if(a%10==2) return true;
a/=10;
//判断月
int b=m;
while(b>0)
if(b%10==2) return true;
b/=10;
//判断日
int c=d;
while(c>0)
if(c%10==2) return true;
c/=10;
return false;
完全日期
https://www.lanqiao.cn/problems/1562/learning/
如果一个日期中年月日的各位数字之和是完全平方数,则称为一个完全日期。
例如:2021 年 6月 5 日的各位数字之和为 2 + 0 + 2 + 1 + 6 + 5 =16,而 16 是一个完全平方数,它是 4 的平方。所以2021 年 6 月 5 日是一个完全日期。
例如:2021 年 6 月 23 日的各位数字之和为 2 + 0 + 2 + 1 + 6 + 2 + 3 = 16,是一个完全平方数。所以 2021 年 6 月 23日也是一个完全日期。
请问,从 2001 年 1 月 1日到 2021年 12 月 31 日中,一共有多少个完全日期?
运行限制
- 最大运行时间:1s
- 最大运行内存: 128M
public class Main
static int[] w= 0,31,28,31,30,31,30,31,31,30,31,30,31;
static int y=2001,m=1,d=1;
public static void main(String[] args)
int ans=0;
//三个或,只要有一个成立就会执行 直到9999年12月31日
while(y!=2021||m!=12||d!=31)
//是否闰年
if(y%400==0||(y%4==0&&y%100!=0)) w[2]=29;
else w[2]=28;
if(check()) ans++;
//接下来日期变更
d++;
if(d>w[m])
m++;
d=1;
if(m>12)
m=1;
y++;
System.out.println(ans);
static boolean check()
int sum=0;
//判断年
int a=y;
while(a>0)
sum+=(a%10);
a/=10;
//判断月
int b=m;
while(b>0)
sum+=(b%10);
b/=10;
//判断日
int c=d;
while(c>0)
sum+=(c%10);
c/=10;
//int v=(int) Math.sqrt(sum);
//return v*v==sum;
if((int)(Math.sqrt(sum)*(int)Math.sqrt(sum))==sum) return true;
return false;
星期几
https://www.lanqiao.cn/problems/729/learning/
1949 年的国庆节( 10 月 1 日)是星期六。
今年(2012)的国庆节是星期一。
那么,从建国到现在,有几次国庆节正好是星期日呢?
不要求写出具体是哪些年,只要一个数目!
运行限制
- 最大运行时间:1s
- 最大运行内存: 128M
public class Main
static int[] w= 0,31,30,31,30,31,30,31,31,30,31,30,31;
//t=0表示星期天 t=1表示星期1 t=6表示星期6
static int y=1949,m=10,d=1,t=6;
public static void main(String[] args)
int ans=0;
while(y!=2012||m!=10||d==1)
if(y%400==0||(y%4==0&&y%100!=0)) w[2]=29;
else w[2]=30;
if(check()) ans++;
d++;
t++;
t%=7; //当t等于7的时候变为0
// if(t>7)
// t=0;
//
if(d>w[m])
m++;
d=1;
if(m>12)
y++;
m=1;
System.out.println(ans);
public static boolean check()
return m==10&&d==1&&t==0;
以上是关于日期模拟器(改变check即可 手切日期)的主要内容,如果未能解决你的问题,请参考以下文章
建立一个参照约束(check约束),要求表“Employees”的字段“雇佣日期”必须比“生日”晚18年