結果

問題 No.84 悪の算盤
ユーザー atkrymatkrym
提出日時 2016-10-25 22:25:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 5,000 ms
コード長 638 bytes
コンパイル時間 1,959 ms
コンパイル使用メモリ 75,148 KB
実行使用メモリ 41,416 KB
最終ジャッジ日時 2024-10-13 08:59:10
合計ジャッジ時間 4,121 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,416 KB
testcase_01 AC 116 ms
41,320 KB
testcase_02 AC 119 ms
41,272 KB
testcase_03 AC 121 ms
41,176 KB
testcase_04 AC 110 ms
39,972 KB
testcase_05 AC 120 ms
41,260 KB
testcase_06 AC 107 ms
40,388 KB
testcase_07 AC 110 ms
39,832 KB
testcase_08 AC 113 ms
39,972 KB
testcase_09 AC 110 ms
39,980 KB
testcase_10 AC 121 ms
41,240 KB
testcase_11 AC 111 ms
40,060 KB
testcase_12 AC 122 ms
41,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        long r = sc.nextLong();
        long c = sc.nextLong();
        long ret;
        boolean b = r%2==0 || c%2==0;
        if (r == c) {
            if (b) {
                ret = r*c/4-1;
            } else {
                ret = (r*c-1)/4;
            }
        } else {
            if (b) {
                ret = r*c/2-1;
            } else {
                ret = (r*c-1)/2;
            }
        }
        
        System.out.println(ret);
    }
}
0