GaiusOctaviusAugustus
GaiusOctaviusAugustus
全部文章
题解
归档
标签
去牛客网
登录
/
注册
GaiusOctaviusAugustus的博客
全部文章
/ 题解
(共5篇)
题解 | #名字的漂亮度#
使用字典统计字母次数 单词中, 字母出现的次数越多, 其 '漂亮值' 越大. 使用字典统计出现次数. 然后 求和 于 字母次数*对应漂亮值. def cal(s): dic = {} res = 0 for i in s: dic[i] = dic.get(i...
Python3
2021-10-25
0
323
题解 | #字符个数统计#
string = input() result = [] for i in string: if i not in result: result.append(i) print(len(result))
Python3
2021-10-17
0
355
题解 | #合并表记录#
n = int(input()) dic = {} # idea: 动态建构字典 for i in range(n): line = input().split() key = int(line[0]) value = int(line[1]) dic[key] =...
Python3
2021-10-17
200
9989
题解 | #计算日期到天数转换#
# Analyze: 闰年 def is_leap(year): return (year % 4 == 0 and year % 100 != 0) or year % 400 == 0 def find_day(year, month, day): ...
Python3
2021-10-17
0
490
题解 | #百钱买百鸡问题#
# Analyze: # 1. 有两个 不变量/等式, 假设数量为: 公鸡 x, 母鸡 y, 鸡仔 z, 则满足: # x + y + z = 100 # 5x + 3y + (1/3)z = 100 # 2. 不等式, 各个变量的值域 domain # ...
Python3
2021-10-17
0
447