結果

問題 No.84 悪の算盤
ユーザー uafr_csuafr_cs
提出日時 2015-05-15 03:15:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 5,000 ms
コード長 349 bytes
コンパイル時間 2,055 ms
コンパイル使用メモリ 74,296 KB
実行使用メモリ 41,852 KB
最終ジャッジ日時 2024-10-13 08:50:53
合計ジャッジ時間 4,263 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,096 KB
testcase_01 AC 118 ms
41,020 KB
testcase_02 AC 121 ms
41,792 KB
testcase_03 AC 120 ms
41,380 KB
testcase_04 AC 105 ms
41,264 KB
testcase_05 AC 123 ms
41,832 KB
testcase_06 AC 123 ms
41,756 KB
testcase_07 AC 124 ms
41,704 KB
testcase_08 AC 116 ms
41,272 KB
testcase_09 AC 122 ms
41,484 KB
testcase_10 AC 121 ms
41,424 KB
testcase_11 AC 121 ms
41,852 KB
testcase_12 AC 123 ms
41,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		final long R = sc.nextLong();
		final long C = sc.nextLong();
		
		System.out.println(Math.max(0, (R * C / (R == C ? 4 : 2)) - (R * C % 2 == 0 ? 1 : 0)));
	}
	
}
0