結果

問題 No.540 格子点と経路
ユーザー 37zigen37zigen
提出日時 2017-07-01 06:59:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 871 bytes
コンパイル時間 4,881 ms
コンパイル使用メモリ 77,164 KB
実行使用メモリ 41,392 KB
最終ジャッジ日時 2024-10-05 00:21:22
合計ジャッジ時間 5,662 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
41,168 KB
testcase_01 AC 117 ms
41,044 KB
testcase_02 AC 115 ms
40,980 KB
testcase_03 AC 108 ms
40,952 KB
testcase_04 AC 114 ms
41,020 KB
testcase_05 AC 107 ms
40,992 KB
testcase_06 AC 121 ms
40,124 KB
testcase_07 AC 106 ms
41,080 KB
testcase_08 AC 116 ms
41,148 KB
testcase_09 AC 111 ms
41,392 KB
testcase_10 AC 114 ms
41,248 KB
testcase_11 AC 114 ms
41,172 KB
testcase_12 AC 108 ms
41,284 KB
testcase_13 AC 104 ms
41,072 KB
testcase_14 AC 118 ms
41,240 KB
testcase_15 AC 130 ms
41,152 KB
testcase_16 AC 115 ms
41,264 KB
testcase_17 AC 118 ms
41,100 KB
testcase_18 AC 117 ms
41,200 KB
testcase_19 AC 118 ms
41,012 KB
testcase_20 AC 116 ms
41,112 KB
testcase_21 AC 113 ms
41,068 KB
testcase_22 AC 116 ms
41,172 KB
testcase_23 AC 117 ms
41,312 KB
testcase_24 AC 101 ms
41,172 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(long m, long M) {
		if (m > M) {
			long 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;
		}

		long l = m / 2;
		return 2 * (M + m - 1) * l + f(m - 2 * l, M - 2 * l) - 4 * l * (l - 1);
//		return 2 * (m + M - 1) + f(m - 2, M - 2);
	}

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