自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(10)
  • 收藏
  • 关注

原创 Python-1136 A Delayed Palindrome

【代码】Python-1136 A Delayed Palindrome。

2022-09-21 13:20:56 146 1

原创 Python-1047 Student List for Course

【代码】Python-1047 Student List for Course。

2022-09-20 13:09:31 193

原创 Python-1039 Course List for Student

【代码】Python-1039 Course List for Student

2022-09-19 21:39:43 235

原创 Python-1036 Boys vs Girls

【代码】Python-1036 Boys vs Girls。

2022-09-19 10:42:32 145

原创 Python-1105 Spiral Matrix

【代码】Python 1105 Spiral Matrix

2022-09-16 22:21:06 262

原创 Python-1065 A+B and C (64bit)

【代码】Python-1065 A+B and C (64bit)

2022-09-15 00:58:01 130

原创 Python-1046 Shortest Distance

1046 Shortest Distance

2022-09-14 13:41:12 150

原创 Python-1042 Shuffling Machine

【代码】Python-1042 Shuffling Machine。

2022-09-13 18:25:52 183

原创 Python-1002 A+B for Polynomials

若A+B=0,则不算入Ka = list(map(float, input().split()[1:])) + list(map(float, input().split()[1:]))temp = [0 for _ in range(1001)]sum = 0for i in range(0, len(a), 2): temp[int(a[i])] += a[i + 1]for i in range(1001): if temp[i] != 0: sum += 1print(sum,

2022-05-08 00:32:53 124

原创 Python-1017 Queueing at Bank

额 我把时间全部化成秒。等待时间=早到时间+等前一个人完事时间我是将所有早到时间先加起来,然后这些人全部归于8点开始。用time按开始时间排列出所有有效的排队人。用pcs按所需时间排列出所有已经在窗口的人。等前一个人完事时间=pcs中前一个人的结束时间-time中这个人的开始时间n, k = list(map(int, input().split()))time = []sec = 0for i in range(n): temp = input().split() x =

2022-05-07 20:50:45 424

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除