結果

問題 No.84 悪の算盤
ユーザー tentententen
提出日時 2020-11-17 13:49:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 255 bytes
コンパイル時間 2,062 ms
コンパイル使用メモリ 74,252 KB
実行使用メモリ 54,360 KB
最終ジャッジ日時 2024-07-23 08:14:48
合計ジャッジ時間 4,557 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
53,872 KB
testcase_01 AC 115 ms
53,084 KB
testcase_02 AC 129 ms
54,252 KB
testcase_03 AC 129 ms
54,140 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 134 ms
54,016 KB
testcase_08 AC 130 ms
54,056 KB
testcase_09 AC 132 ms
53,872 KB
testcase_10 AC 126 ms
54,072 KB
testcase_11 AC 131 ms
54,308 KB
testcase_12 AC 130 ms
54,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long x = sc.nextLong() * sc.nextLong();
        long ans = (x + 1) / 2 - 1;
        System.out.println(ans);
    }
}
0