結果

問題 No.84 悪の算盤
ユーザー ぴろずぴろず
提出日時 2014-12-02 23:54:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 5,000 ms
コード長 322 bytes
コンパイル時間 1,861 ms
コンパイル使用メモリ 73,784 KB
実行使用メモリ 41,544 KB
最終ジャッジ日時 2024-10-13 08:42:45
合計ジャッジ時間 4,024 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,448 KB
testcase_01 AC 116 ms
41,204 KB
testcase_02 AC 109 ms
40,188 KB
testcase_03 AC 121 ms
41,544 KB
testcase_04 AC 119 ms
41,436 KB
testcase_05 AC 117 ms
41,368 KB
testcase_06 AC 103 ms
40,432 KB
testcase_07 AC 117 ms
41,260 KB
testcase_08 AC 119 ms
41,272 KB
testcase_09 AC 118 ms
41,220 KB
testcase_10 AC 116 ms
41,404 KB
testcase_11 AC 105 ms
40,040 KB
testcase_12 AC 118 ms
41,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long r = sc.nextInt();
		long c = sc.nextInt();
		if (r != c) {
			System.out.println(((r * c) + 1) / 2 - 1);
		}else{
			System.out.println(((r * c) + 3) / 4 - 1);
		}
	}

}
0