結果

問題 No.84 悪の算盤
ユーザー リチウムリチウム
提出日時 2014-12-03 00:19:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 544 bytes
コンパイル時間 3,291 ms
コンパイル使用メモリ 74,004 KB
実行使用メモリ 54,292 KB
最終ジャッジ日時 2024-10-13 08:43:42
合計ジャッジ時間 5,212 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,096 KB
testcase_01 AC 121 ms
53,564 KB
testcase_02 AC 121 ms
54,000 KB
testcase_03 AC 126 ms
53,736 KB
testcase_04 AC 121 ms
54,292 KB
testcase_05 AC 114 ms
53,388 KB
testcase_06 AC 111 ms
53,028 KB
testcase_07 AC 110 ms
52,820 KB
testcase_08 AC 122 ms
53,860 KB
testcase_09 AC 108 ms
52,748 KB
testcase_10 AC 121 ms
54,000 KB
testcase_11 AC 105 ms
52,488 KB
testcase_12 AC 118 ms
53,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import static java.lang.Math.*;
 
public class ppp {
	
	
		
  public static void main(String[] args) {
	  Scanner sc=new Scanner(System.in);
	  long r=sc.nextInt();
	  long c=sc.nextInt();
	  long x=0;
	  if(r==c){
		x=(r/2)*(r/2);
		if(r%2==1){
			x+=r/2+1;
		}
	  }
	  if(r!=c){
		  x=(r/2)*(c/2)*2;
		  if(r%2==0 && c%2==1){
			  x+=r/2;
		  }
		  if(r%2==1 && c%2==0){
			  x+=c/2;
		  }
		  if(r%2==1 && c%2==1){
			  x+=c/2+r/2+1;
		  }
		  
	  }
	  System.out.println(x-1);
	  
  }}
0