会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
SmatrChen
博客园
首页
新随笔
联系
订阅
管理
2021年6月18日
C2. Potions (Hard Version)
摘要: import heapq q = [] n = int(input()) ar = list(map(int, input().split())) health= 0 cnt = 0 for v in ar: if v >= 0: cnt += 1 health += v else: if heal
阅读全文
posted @ 2021-06-18 16:40 SmatrChen
阅读(62)
评论(0)
推荐(0)
编辑
Codeforces Round #725 (Div. 3) D. Another Problem About Dividing Numbers
摘要: 比如给两个数,6, 175,把他们分解质因数 2, 3 5, 5, 7 那么一共有5个质因数 k=5时, 6/2=3, 3/3 = 1 175/5 = 35, 35/5 = 7, 7/7 = 1 k=5可行,且k>5不可行。 k=4时,只需要让质因子合并一下成为除数就行 如变成 2, 3 5, 35
阅读全文
posted @ 2021-06-18 16:22 SmatrChen
阅读(45)
评论(0)
推荐(0)
编辑
Codeforces Round #725 (Div. 3) F. Interesting Function 题解
摘要: 规律是统计各个位变化的次数。 0变成12,个位变动了12次,十位变动了1次 0变成234,个位变动了234次,十位变动了 234/10 =23次,百位变动了23/10 = 2次
阅读全文
posted @ 2021-06-18 16:13 SmatrChen
阅读(34)
评论(0)
推荐(0)
编辑
公告