結果

問題 No.208 王将
ユーザー tsunabittsunabit
提出日時 2020-03-15 21:01:27
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 660 bytes
コンパイル時間 2,988 ms
コンパイル使用メモリ 74,120 KB
実行使用メモリ 832,000 KB
最終ジャッジ日時 2024-11-25 11:34:05
合計ジャッジ時間 10,344 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
53,628 KB
testcase_01 AC 112 ms
53,868 KB
testcase_02 AC 112 ms
54,120 KB
testcase_03 AC 103 ms
52,696 KB
testcase_04 AC 112 ms
53,968 KB
testcase_05 AC 122 ms
53,952 KB
testcase_06 AC 299 ms
54,080 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 106 ms
53,204 KB
testcase_10 AC 269 ms
53,708 KB
testcase_11 TLE -
testcase_12 AC 485 ms
53,372 KB
testcase_13 AC 126 ms
53,744 KB
testcase_14 AC 100 ms
52,776 KB
testcase_15 AC 109 ms
53,516 KB
testcase_16 AC 111 ms
53,756 KB
testcase_17 AC 118 ms
53,988 KB
testcase_18 TLE -
testcase_19 AC 134 ms
52,744 KB
testcase_20 AC 108 ms
52,780 KB
testcase_21 AC 118 ms
53,820 KB
testcase_22 AC 100 ms
53,008 KB
testcase_23 AC 124 ms
53,824 KB
testcase_24 AC 101 ms
52,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No208 {
	public static int ans = Integer.MAX_VALUE;
	public static int x, y, x2, y2;
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		x = sc.nextInt();
		y = sc.nextInt();
		x2 = sc.nextInt();
		y2 = sc.nextInt();
		sou(0, 0, 0);
		System.out.println(ans);
	}
	public static void sou(int cx, int cy, int cnt) {
		if(cx > x || cy > y) return;
		if(cx == x && cy == y) ans = Math.min(cnt, ans);
		if(cx+1 != x2 || cy+1 != y2) sou(cx+1, cy+1, cnt+1);
		if(cx != x2 || cy+1 != y2) sou(cx, cy+1, cnt+1);
		if(cx+1 != x2 || cy != y2) sou(cx+1, cy, cnt+1);
	}
}
0