結果

問題 No.870 無敵囲い
ユーザー 37zigen37zigen
提出日時 2019-08-30 22:48:33
言語 Java21
(openjdk 21)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
39,904 KB
testcase_01 AC 116 ms
41,288 KB
testcase_02 AC 104 ms
41,448 KB
testcase_03 AC 117 ms
40,916 KB
testcase_04 AC 118 ms
41,200 KB
testcase_05 AC 112 ms
40,132 KB
testcase_06 AC 108 ms
41,128 KB
testcase_07 AC 104 ms
41,204 KB
testcase_08 AC 117 ms
41,232 KB
testcase_09 AC 114 ms
41,152 KB
testcase_10 AC 115 ms
40,516 KB
testcase_11 AC 127 ms
41,240 KB
testcase_12 AC 121 ms
41,108 KB
testcase_13 AC 117 ms
40,108 KB
testcase_14 AC 106 ms
41,044 KB
testcase_15 AC 123 ms
41,316 KB
testcase_16 AC 121 ms
41,404 KB
testcase_17 AC 118 ms
41,496 KB
testcase_18 AC 119 ms
41,400 KB
testcase_19 AC 112 ms
41,196 KB
testcase_20 AC 119 ms
41,400 KB
権限があれば一括ダウンロードができます

ソースコード

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