A. Transmigration】的更多相关文章

A. Transmigration time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output In Disgaea as in most role-playing games, characters have skills that determine the character's ability to use certain wea…
在魔界战记中有一个设定叫做转生,当一个人物转生时,会保留之前的技能,但是技能等级需要乘以一个系数 k ,如果技能等级小于100,将会在转生之后失去该技能. 转生之后,会学到一些新技能.这些新技能附加的等级为0. 现在给你 n 个已有的技能,m个新技能和系数k,请按字典序输出转生之后的技能总数.技能名称和等级. 这题最纠结蛋疼的地方就是不能使用强制类型转换和系统函数floor(). 从样例输出来看,技能等级是向下取整的(350*0.75=262.5).但是如果使用强制类型转换或者是用floor()…
题目本身上手并不难,字符串处理+简单的排序.要注意的地方是浮点数的处理. 依据计算机中浮点数的表示原理,在实际编程的过程中即使用一个确定的整数(假设是1)给一个浮点变量赋值 在查看变量时会发现实际存储的值是0.99999…….可以注意到在使用原来的EPX*k时也有可能出现这样的情况,本来是准确值应该是100,浮点运算却会得到 99.999…… 由于k只有两位小数,因此一个整数乘上k,最多还是只有两位 我们令 新的经验new_epx=epx*k+0.001 当然可以用任何比0.01小的数,都能在不…
================================= This article came from here:http://blog.renren.com/GetEntry.do?id=418274983&owner=140975937 ================================= Manuscript number: BXXXXXKMS Type: ArticleTitle: "XXXX"Correspondence Author: XXX…
#瓦登尔湖词频统计: import string path = 'D:/python3/Walden.txt' with open(path,'r',encoding= 'utf-8') as text: words = [raw_word.strip(string.punctuation).lower() for raw_word in text.read().split()] words_index = set(words) counts_dict = {index:words.count(…