結果

問題 No.84 悪の算盤
ユーザー soujikisoujiki
提出日時 2015-04-29 21:23:16
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 605 bytes
コンパイル時間 2,703 ms
コンパイル使用メモリ 75,596 KB
実行使用メモリ 54,376 KB
最終ジャッジ日時 2024-07-05 16:48:18
合計ジャッジ時間 4,680 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
53,028 KB
testcase_01 AC 111 ms
53,668 KB
testcase_02 AC 100 ms
53,088 KB
testcase_03 AC 102 ms
52,628 KB
testcase_04 AC 101 ms
52,980 KB
testcase_05 AC 99 ms
52,844 KB
testcase_06 WA -
testcase_07 AC 110 ms
54,008 KB
testcase_08 AC 95 ms
52,412 KB
testcase_09 AC 113 ms
54,036 KB
testcase_10 WA -
testcase_11 AC 112 ms
54,084 KB
testcase_12 AC 107 ms
53,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

	
import java.util.*;

public class Yukicoder_84{
	public static void main(String[] args){
		Scanner stdIn = new Scanner(System.in);
		long R = stdIn.nextLong();
		long C = stdIn.nextLong();
		long ans = 0;
		if(R==1 && C==1){
			System.out.println(0);
		}
		else{
			if(R%2==0){
				if(C%2==0){
					if(R==C){
						ans = (long)Math.pow(R/2,2)-1;
					}
					else{
						ans = R*C/2;
					}
				}
				else{
					ans = (C-1)*R/2+R/2-1;
				}
			}
			else{
				if(C%2==0){
					ans = (R-1)*C/2+C/2-1;
				}
				else{
					ans = (R-1)*(C-1)/2+(C-1)/2+(R-1)/2;
				}
			}
			System.out.println(ans);
		}
	}
}
0