0%

蓝桥oj610-分数

题目

分析

首先是等比数列

然后一个数论知识

较大的数如果比较小的数的两倍大1或者小1,则两者互质。

代码

1
2
3
4
5
6
7
public class Main {
public static void main(String[] args) {
System.out.print((int)Math.pow(2, 20) - 1);
System.out.print('/');
System.out.print((int)Math.pow(2, 19));
}
}