cxxiaoguo


私信TA

用户名:guowenwu

访问量:32805

签 名:

累死自己卷死你们

等  级
排  名 131
经  验 7634
参赛次数 8
文章发表 62
年  龄 0
在职情况 学生
学  校 成都信息工程大学
专  业 人工智能

  自我简介:

解题思路:

注意事项:

参考代码:

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 人评分

  评论区

根本通过不了,别乱写题解啊兄弟
2020-04-04 19:17:29
  • «
  • 1
  • »