結果

問題 No.84 悪の算盤
ユーザー カニ戯(ryカニ戯(ry
提出日時 2015-02-25 14:01:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 242 bytes
コンパイル時間 2,120 ms
コンパイル使用メモリ 77,080 KB
実行使用メモリ 54,000 KB
最終ジャッジ日時 2024-10-13 08:47:25
合計ジャッジ時間 4,368 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,856 KB
testcase_01 AC 120 ms
53,800 KB
testcase_02 AC 116 ms
53,736 KB
testcase_03 AC 118 ms
53,800 KB
testcase_04 AC 122 ms
53,760 KB
testcase_05 AC 120 ms
53,960 KB
testcase_06 AC 123 ms
53,928 KB
testcase_07 AC 110 ms
52,772 KB
testcase_08 AC 114 ms
52,728 KB
testcase_09 AC 125 ms
53,776 KB
testcase_10 AC 120 ms
53,684 KB
testcase_11 AC 123 ms
54,000 KB
testcase_12 AC 125 ms
53,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main {
	public static void main(String[] a) {
		Scanner s=new Scanner(System.in);
		long R=s.nextLong(),C=s.nextLong(),S=R*C%2>0?R==C?(R-1)*(R+1)/4:R*C/2:R*C/(R==C?4:2)-1;
		System.out.println(S);
	}
}
0