全站第 10/1239

解决了 111/334 题

中等: 3/75
入门: 48/77
困难: 1/29
简单: 23/114
草履虫: 36/39

过去1年一共提交 167

Aug
Sep
Oct
Nov
Dec
Jan
Feb
Mar
Apr
May
Jun
Jul

勋章 ①金银铜:在竞赛中获得第一二三名;②好习惯:自然月10天提交;③里程碑:解决1/2/5/10/20/50/100/200题;④每周打卡挑战:完成每周5题,每年1月1日清零。

提交天数:13 天2025-03-31
达成1题里程碑2025-03-16
达成2题里程碑2025-03-16
达成5题里程碑2025-03-16
达成10题里程碑2025-03-16
达成20题里程碑2025-03-19
达成50题里程碑2025-03-22
达成100题里程碑2025-03-29
完成w1打卡2025-03-27
完成w2打卡2025-03-27
完成w3打卡2025-03-28
完成w4打卡2025-03-29
完成w5打卡2025-03-29
完成w6打卡2025-03-30
完成w7打卡2025-03-30
完成w8打卡2025-03-30
完成w9打卡2025-03-30
完成w10打卡2025-03-25
完成w11打卡2025-03-30
完成w12打卡2025-03-16
完成w13打卡2025-03-16
完成w14打卡2025-03-19
完成w15打卡2025-03-26
完成w22打卡2025-03-27
完成w23打卡2025-03-24
完成w24打卡2025-03-24
完成w25打卡2025-03-24
完成w26打卡2025-03-24
完成w27打卡2025-03-26
完成w28打卡2025-03-20
完成w29打卡2025-03-19
完成w30打卡2025-03-20
完成w31打卡2025-03-19

收藏

收藏日期 题目名称 解决状态
没有收藏的题目。

评论笔记

评论日期 题目名称 评论内容 站长评论
没有评论过的题目。

提交记录

提交日期 题目名称 提交代码
2025-03-30 经过第四象限的所有函数 
select * from numbers_for_fun
where 
(a=0 and b>=0 and c<0) or
(a=0 and b<0) or
 	(a<0) or
(a>0 and (c<0 or (b<0 and a*c*4
2025-03-30 经过第四象限的所有函数 
select * from numbers_for_fun
where 
(a=0 and b>=0 and c<0) or
(a=0 and b<0) or
 	(a<0) or
(a>0 and (c<0 or (b<0 and a*b*4
2025-03-30 北京有雪的日子 
select dt,    tmp_h,    tmp_l,con    wnd
from weather_rcd_china 
where con like '%雪%' and city = 'beijing'
2025-03-30 北京有雪的日子 
select dt,tmp_h,tmp_l,con,wnd from weather_rcd_china
where city = 'beijing' and con like '%雪%'
2025-03-30 北京有雪的日子 
select dt,tmp_h,tmp_l,wnd from weather_rcd_china
where city = 'beijing' and con like '%雪%'
2025-03-30 经过第四象限的所有函数 
select * from numbers_for_fun
where 
	(a=0 and c<0) or
(a<0) or
(a>0 and (c<0 or (b < 0 AND 4*a*c < b*b)))
2025-03-30 不经过第二象限的所有函数 
select * from numbers_for_fun
where 
	(a=0 and b>=0 and c<=0) or
(a<0 and ((b>=0 and c<=0) or (b<0 and c<=(b*b/4/a))))
2025-03-30 经过3个象限的一元一次函数 
select * from numbers_for_fun
where a=0 and b!=0 and c!=0
2025-03-30 经过至少两个象限的一元一次函数 
select * from numbers_for_fun
where a=0 and b!=0
2025-03-30 经过至少两个象限的一元一次函数 
select * from numbers_for_fun
where a=0
2025-03-30 一元一次函数形成的三角形面积 
select * from numbers_for_fun
where a=0 and b!=0 and abs((c*c)/(2*b)) >=5;
2025-03-30 一元一次函数形成的三角形面积 
select * from numbers_for_fun
where a=0 and b!=0 and (c*c)/(2*b) >=5;
2025-03-30 一元一次函数形成的三角形面积 
select * from numbers_for_fun
where a=0 and b!=0 and c*c/b >=5;
2025-03-30 一元一次函数形成的等腰三角形 
select * from numbers_for_fun
where a=0 and b in(1,-1) and c!=0
2025-03-30 一元一次函数形成的等腰三角形 
select * from numbers_for_fun
where a=0 and b!=0 and c!=0 and c = b*c*-1
2025-03-30 开口向上的一元二次函数 
select * from numbers_for_fun 
where a>0
2025-03-29 必过(-1, 0)的一元一次函数 
select * from numbers_for_fun
where a=0 and b!=0 and c-b =0
2025-03-29 必过(-1, -1)的一元一次函数 
select * from numbers_for_fun 
where a=0 and b!=0 and c-b = -1
2025-03-29 必过(0, 1)的一元一次函数 
select * from numbers_for_fun
where a=0 and b!=0 and c = 1
2025-03-29 不经过第二象限的一元一次函数 
select * from numbers_for_fun
where a=0 and b!=0 and (b>0 and c<=0)