結果

問題 No.208 王将
ユーザー tsunabittsunabit
提出日時 2020-03-15 21:01:27
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 660 bytes
コンパイル時間 2,838 ms
コンパイル使用メモリ 75,076 KB
実行使用メモリ 832,248 KB
最終ジャッジ日時 2024-05-04 04:36:20
合計ジャッジ時間 6,505 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,432 KB
testcase_01 AC 99 ms
41,488 KB
testcase_02 AC 109 ms
41,044 KB
testcase_03 AC 96 ms
41,300 KB
testcase_04 AC 108 ms
41,172 KB
testcase_05 AC 114 ms
41,752 KB
testcase_06 AC 299 ms
41,272 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 94 ms
41,420 KB
testcase_10 AC 265 ms
41,728 KB
testcase_11 MLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

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