結果

問題 No.870 無敵囲い
ユーザー 37zigen37zigen
提出日時 2019-08-30 22:48:33
言語 Java
(openjdk 23)
結果
AC  
実行時間 127 ms / 300 ms
コード長 783 bytes
コンパイル時間 1,828 ms
コンパイル使用メモリ 77,288 KB
実行使用メモリ 41,496 KB
最終ジャッジ日時 2024-06-29 06:21:14
合計ジャッジ時間 5,048 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Scanner;

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

	void run() {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int[][] map = new int[9][9];
		map[1][7] = 1;
		map[2][8] = 2;
		map[6][8] = 3;
		for (int i = 0; i < N; ++i) {
			int x0 = sc.nextInt();
			int y0 = sc.nextInt();
			int x1 = sc.nextInt();
			int y1 = sc.nextInt();
			--x0;
			--y0;
			--x1;
			--y1;
			map[x1][y1] = map[x0][y0];
			map[x0][y0] = 0;
		}
		if (map[4][7] == 1 && map[3][7] == 2 && map[5][7] == 3) {
			System.out.println("YES");
		} else {
			System.out.println("NO");
		}
	}

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