結果

問題 No.540 格子点と経路
ユーザー 37zigen37zigen
提出日時 2017-07-01 06:41:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 772 bytes
コンパイル時間 2,921 ms
コンパイル使用メモリ 74,468 KB
実行使用メモリ 56,888 KB
最終ジャッジ日時 2024-10-05 03:12:53
合計ジャッジ時間 5,688 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
54,000 KB
testcase_01 AC 101 ms
52,584 KB
testcase_02 AC 119 ms
53,960 KB
testcase_03 AC 101 ms
53,000 KB
testcase_04 AC 112 ms
53,748 KB
testcase_05 AC 99 ms
55,312 KB
testcase_06 AC 116 ms
56,608 KB
testcase_07 AC 115 ms
55,740 KB
testcase_08 AC 115 ms
54,472 KB
testcase_09 AC 115 ms
56,528 KB
testcase_10 AC 103 ms
55,004 KB
testcase_11 AC 117 ms
54,448 KB
testcase_12 AC 113 ms
54,948 KB
testcase_13 AC 114 ms
54,528 KB
testcase_14 AC 113 ms
54,656 KB
testcase_15 AC 101 ms
54,724 KB
testcase_16 AC 103 ms
53,280 KB
testcase_17 AC 112 ms
55,972 KB
testcase_18 AC 114 ms
56,276 KB
testcase_19 AC 102 ms
53,384 KB
testcase_20 AC 115 ms
55,808 KB
testcase_21 AC 98 ms
55,140 KB
testcase_22 AC 112 ms
53,716 KB
testcase_23 AC 109 ms
53,792 KB
testcase_24 AC 116 ms
56,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.FileNotFoundException;
import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws FileNotFoundException {
		new Main().run();
	}

	final long MODULO = 1_000_000_000 + 7;

	void run() {
		Scanner sc = new Scanner(System.in);
		int w = sc.nextInt();
		int h = sc.nextInt();
		int m = Math.min(w, h);
		int M = Math.max(w, h);
		System.out.println(f(m, M));
	}

	long f(int m, int M) {
		if (m > M) {
			int d = M;
			M = m;
			m = d;
		}
		if (m == 0 && M == 0) {
			return 0;
		}
		if (m == 0 && M > 0) {
			return 1;
		}
		if (m == 1) {
			return 2 * M + 1;
		}
		return 2 * (m + M - 1) + f(m - 2, M - 2);
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
}
0