結果

問題 No.2256 Step by Step
ユーザー CuriousFairy315CuriousFairy315
提出日時 2023-03-24 23:05:00
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 3,153 bytes
コンパイル時間 3,955 ms
コンパイル使用メモリ 77,984 KB
実行使用メモリ 54,656 KB
最終ジャッジ日時 2024-09-18 17:29:18
合計ジャッジ時間 9,781 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
53,900 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 149 ms
54,172 KB
testcase_04 AC 134 ms
54,096 KB
testcase_05 AC 129 ms
53,924 KB
testcase_06 AC 115 ms
53,936 KB
testcase_07 AC 98 ms
52,764 KB
testcase_08 AC 99 ms
52,460 KB
testcase_09 WA -
testcase_10 AC 117 ms
54,092 KB
testcase_11 WA -
testcase_12 AC 156 ms
54,304 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 128 ms
54,224 KB
testcase_16 AC 132 ms
53,932 KB
testcase_17 AC 130 ms
53,000 KB
testcase_18 WA -
testcase_19 AC 130 ms
54,068 KB
testcase_20 AC 122 ms
52,908 KB
testcase_21 AC 134 ms
53,212 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 138 ms
54,092 KB
testcase_25 AC 125 ms
53,960 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 126 ms
53,352 KB
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import static java.lang.System.err;

public class Main {
	public static void main(String[] args) {
		java.io.PrintWriter out = new java.io.PrintWriter(System.out);
		new Main(out);
		out.flush();
		err.flush();
	}

	/*
	 * 考察
	 * 連結パーツを作りたい
	 *
	 * 124
	 * 03x
	 * 03x
	 * 011
	 * 232
	 * 44x
	 * を始点パーツ
	 * x13
	 * 02x
	 * 12x
	 * x00
	 * x21
	 * 33x
	 * を接続パーツ
	 * x24
	 * 013
	 * 213
	 * x00
	 * x12
	 * 443
	 * を終点パーツとすると、5+2xは作れる
	 * 3665
	 * 244x
	 * 211x
	 * 1000
	 * 2334
	 * 455x
	 * で6+2xも作れる
	 * あ、勝ちました
	 * 1だと100011で良い、2は不可能が示せるので終了
	 */
	public Main(java.io.PrintWriter out) {
		try (java.util.Scanner sc = new java.util.Scanner(System.in)) {
			int N = sc.nextInt();
			int[][] joint = { { -1, 1, 3 }, { 0, 2, -1 }, { 1, 2, -1 }, { -1, 0, 0 }, { -1, 2, 1 }, { 3, 3, -1 } };
			int[][] last = { { -1, 2, 4 }, { 0, 1, 3 }, { 2, 1, 3 }, { -1, 0, 0 }, { -1, 1, 2 }, { 4, 4, 3 } };
			if (N == 1) {
				out.println("0\n1\n1\n1\n0\n0");
			} else if (N == 2) {
				out.println(-1);
			} else if (N % 2 == 1) {
				int[][] first = { { 1, 2, 4 }, { 0, 3, -1 }, { 0, 3, -1 }, { 0, 1, 1 }, { 2, 3, 2 }, { 4, 4, -1 } };
				if (N == 3) {
					for (int[] i : first) {
						for (int j : i) {
							if (j == -1) j = 9;
							out.print(j);
						}
						out.println();
					}
					return;
				}
				int[][] ans = new int[6][N];
				int line = 0, add = 0;
				for (int y = 0;y < 6;++ y) {
					for (int x = 0;x < 3;++ x) {
						if (first[y][x] != -1) ans[y][x + line] = first[y][x];
					}
				}
				line += 2;
				add += 5;
				while(line + 3 != N) {
					for (int y = 0;y < 6;++ y) {
						for (int x = 0;x < 3;++ x) {
							if (joint[y][x] != -1) ans[y][x + line] = (joint[y][x] + add) % 10;
						}
					}
					line += 2;
					add += 5;
				}
				for (int y = 0;y < 6;++ y) {
					for (int x = 0;x < 3;++ x) {
						if (last[y][x] != -1) ans[y][x + line] = (last[y][x] + add) % 10;
					}
				}
				for (int[] i : ans) {
					for (int j : i) out.print(j);
					out.println();
				}
				return;
			} else {
				int[][] first = {{3, 6, 6, 5}, {2, 4, 4, -1}, {2, 1, 1, -1}, {1, 0, 0, 0}, {2, 3, 3, 4}, {4, 5, 5, -1}};
				if (N == 4) {
					for (int[] i : first) {
						for (int j : i) {
							if (j == -1) j = 9;
							out.print(j);
						}
						out.println();
					}
					return;
				}
				int[][] ans = new int[6][N];
				int line = 0, add = 0;
				for (int y = 0;y < 6;++ y) {
					for (int x = 0;x < 4;++ x) {
						if (first[y][x] != -1) ans[y][x + line] = first[y][x];
					}
				}
				line += 3;
				add += 7;
				while(line + 3 != N) {
					for (int y = 0;y < 6;++ y) {
						for (int x = 0;x < 3;++ x) {
							if (joint[y][x] != -1) ans[y][x + line] = (joint[y][x] + add) % 10;
						}
					}
					line += 2;
					add += 5;
				}
				for (int y = 0;y < 6;++ y) {
					for (int x = 0;x < 3;++ x) {
						if (last[y][x] != -1) ans[y][x + line] = (last[y][x] + add) % 10;
					}
				}
				for (int[] i : ans) {
					for (int j : i) out.print(j);
					out.println();
				}
				return;
			}
		}
	}
}
0