解题思路:
注意事项:
参考代码:
import java.math.BigInteger;
import java.util.Scanner;
public class Main{
public static void main(String[] args) {
Scanner input=new Scanner(System.in);
BigInteger a=input.nextBigInteger(),b=input.nextBigInteger();
if(a.compareTo(new BigInteger("1"))==0&&b.compareTo(new BigInteger("1"))==0){
System.out.println(1);
return;
}
BigInteger c=a.mod(new BigInteger("2"));
BigInteger d=b.mod(new BigInteger("2"));
if(c.compareTo(d)==0){
System.out.println(a.multiply(b).subtract(new BigInteger("1")));
}else {
System.out.println(1);
}
return;
}
}
0.0分
7 人评分
字符串的输入输出处理 (C语言代码)浏览:711 |
C语言程序设计教程(第三版)课后习题9.2 (C语言代码)浏览:741 |
C语言程序设计教程(第三版)课后习题12.5 (C语言代码)浏览:875 |
数列 (C++代码)浏览:707 |
C语言程序设计教程(第三版)课后习题7.2 (Java代码)浏览:694 |
【回文数(二)】 (C语言代码)浏览:940 |
C语言训练-角谷猜想 (C++代码)(3N+1问题)浏览:1850 |
C语言程序设计教程(第三版)课后习题9.4 (Java代码)浏览:1446 |
大小写转换 (C语言代码)浏览:904 |
最小公倍数 (C语言代码)浏览:894 |