結果

問題 No.84 悪の算盤
ユーザー GrenacheGrenache
提出日時 2015-11-06 21:59:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 536 bytes
コンパイル時間 3,579 ms
コンパイル使用メモリ 74,088 KB
実行使用メモリ 41,324 KB
最終ジャッジ日時 2024-10-13 08:56:37
合計ジャッジ時間 5,783 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,064 KB
testcase_01 AC 129 ms
41,140 KB
testcase_02 AC 132 ms
41,188 KB
testcase_03 AC 132 ms
41,044 KB
testcase_04 AC 134 ms
41,260 KB
testcase_05 AC 132 ms
41,164 KB
testcase_06 AC 134 ms
41,128 KB
testcase_07 AC 135 ms
40,980 KB
testcase_08 AC 130 ms
39,944 KB
testcase_09 AC 136 ms
41,324 KB
testcase_10 AC 136 ms
41,124 KB
testcase_11 AC 133 ms
41,228 KB
testcase_12 AC 132 ms
41,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder84 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        long r = sc.nextInt();
        long c = sc.nextInt();

        long ret = (r / 2) * (c / 2);
        if (r != c) {
        	ret *= 2;
        }
        ret += (r % 2) * (c / 2);
        if (r != c) {
        	ret += (c % 2) * (r / 2);
        }
        if ((r % 2) * (c % 2) != 0) {
        	ret++;
        }

        System.out.println(ret - 1);

        sc.close();
    }
}
0