这个题目,我用python写的,如果用其他的语言,我还真不会,如果自己造轮子,讲真,这题估计要难死我,但是python就不一样了,居然有相关库。 用法还是挺简单的,输入分数常用的有两种方法 Fraction(x,y) Fraction('1/200') Fraction的方法 分子numerator ...
分类:
其他好文 时间:
2018-12-02 12:01:35
阅读次数:
114
import fractions f1 = fractions.Fraction(2, 3) f2 = fractions.Fraction(3, 7) print('{} + {} = {}'.format(f1, f2, f1 + f2)) print('{} - {} = {}'.format... ...
分类:
编程语言 时间:
2018-11-15 22:27:13
阅读次数:
184
from fractions import Fraction value = 4.2 print(Fraction(value).limit_denominator()) ...
分类:
编程语言 时间:
2018-11-15 22:26:44
阅读次数:
566
A sorted list A contains 1, plus some number of primes. Then, for every p < q in the list, we consider the fraction p/q. What is the K-th smallest fra ...
分类:
其他好文 时间:
2018-11-09 20:52:52
阅读次数:
296
题意: 给定一个数字串,每个位子都能向(i*i+1)%n的位子转移,输出路径上,字典序最大的,长度为n的串。 参考:https://www.cnblogs.com/mountaink/p/9541442.html 思路: BFS, 一个数字肯定是最高位越大,这个数字本身就越大,所以肯定第一位要取最大 ...
分类:
其他好文 时间:
2018-11-09 13:52:42
阅读次数:
147
Given two integers representing the numerator and denominator of a fraction, return the fraction in string format. If the fractional part is repeating ...
分类:
其他好文 时间:
2018-10-17 16:57:23
阅读次数:
149
1.fr:是一个弹性尺寸单位,其来自 "fraction" 或 "fractional unit" 单词的前两个字母,表示整体空间的一部分。可以帮助我们创建一个弹性的网格轨道。它代表了网格容器中可用的空间。 2.px:(pixel)像素,相对长度单位。像素px是相对于显示器分辨率而言的 特点: (1 ...
分类:
Web程序 时间:
2018-10-16 13:52:35
阅读次数:
136
一、题目 1、审题 2、分析 给出一个整数分子,一个整数分母。求商。若商为无限循环有理数,用括号包裹循环的小数。 二、解答 1、思路: ①、先确定商的符号;可以采用 ^ 运算符; ②、计算商的整数部分; ③、计算商的小数部分;同时用一个 Map 记录当前小数数值以及插入的下标,用于判断是否是循环有理 ...
分类:
其他好文 时间:
2018-10-15 23:19:36
阅读次数:
161
The ant Welly now dedicates himself to urban infrastructure. He came to the kingdom of numbers and solicited an audience with the king. He recounted h ...
分类:
其他好文 时间:
2018-10-14 11:33:57
阅读次数:
279
题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=6223 题目: 题意: 给你一个长度为n的数字串,开始时你选择一个位置(记为i,下标从0开始)做为起点,那么下一步将在(i × i + 1)%n处,将字典序最大的路径上的数打印出来。 思路: 要想字典序 ...
分类:
其他好文 时间:
2018-10-13 21:37:07
阅读次数:
177