結果

問題 No.84 悪の算盤
ユーザー htensaihtensai
提出日時 2019-12-30 17:47:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 5,000 ms
コード長 597 bytes
コンパイル時間 2,494 ms
コンパイル使用メモリ 75,356 KB
実行使用メモリ 41,544 KB
最終ジャッジ日時 2024-11-09 00:44:26
合計ジャッジ時間 3,938 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
39,912 KB
testcase_01 AC 104 ms
41,544 KB
testcase_02 AC 116 ms
41,176 KB
testcase_03 AC 122 ms
41,292 KB
testcase_04 AC 105 ms
41,256 KB
testcase_05 AC 113 ms
41,040 KB
testcase_06 AC 119 ms
41,100 KB
testcase_07 AC 121 ms
41,304 KB
testcase_08 AC 117 ms
39,860 KB
testcase_09 AC 117 ms
41,132 KB
testcase_10 AC 122 ms
41,156 KB
testcase_11 AC 106 ms
41,292 KB
testcase_12 AC 109 ms
41,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long h = sc.nextInt();
        long w = sc.nextInt();
        long ans;
        if (h == w) {
            if (h % 2 == 0) {
                ans = h * w / 4 - 1;
            } else {
                ans = (h * w - 1) / 4;
            }
        } else {
            if (h % 2 == 0 || w % 2 == 0) {
                ans = h * w / 2 - 1;
            } else {
                ans = (h * w - 1) / 2;
            }
        }
        System.out.println(ans);
    }
}
0