結果

問題 No.84 悪の算盤
ユーザー k_kadorak_kadora
提出日時 2015-05-24 01:18:01
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 399 bytes
コンパイル時間 3,354 ms
コンパイル使用メモリ 74,664 KB
実行使用メモリ 54,248 KB
最終ジャッジ日時 2024-07-06 06:24:06
合計ジャッジ時間 4,563 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
53,840 KB
testcase_01 AC 105 ms
54,248 KB
testcase_02 AC 106 ms
54,212 KB
testcase_03 AC 105 ms
53,768 KB
testcase_04 AC 104 ms
54,036 KB
testcase_05 AC 104 ms
54,088 KB
testcase_06 WA -
testcase_07 AC 103 ms
54,088 KB
testcase_08 AC 95 ms
52,728 KB
testcase_09 AC 107 ms
54,112 KB
testcase_10 AC 94 ms
53,100 KB
testcase_11 AC 105 ms
53,824 KB
testcase_12 AC 105 ms
54,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Soroban{
	public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		long r,c,out;
		r = sc.nextInt();
		c = sc.nextInt();
		if(r == c){
			if(r %2 == 0){
				out = r*c /4 -1;
			}else{
				out = (r/2)*(r/2);
			}
		}else{
			if(r%2 == 0 || c %2 ==0){
				out = r*c /2 -1;
			}else{
				out = r*c /2;
			}
		}
		System.out.println(out);
	}
}
			
0