結果

問題 No.2256 Step by Step
ユーザー shobonvipshobonvip
提出日時 2023-01-28 02:36:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,442 bytes
コンパイル時間 432 ms
コンパイル使用メモリ 87,284 KB
実行使用メモリ 76,616 KB
最終ジャッジ日時 2023-09-10 19:26:27
合計ジャッジ時間 5,861 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,552 KB
testcase_01 AC 72 ms
71,180 KB
testcase_02 WA -
testcase_03 AC 81 ms
76,276 KB
testcase_04 AC 79 ms
76,532 KB
testcase_05 AC 80 ms
76,572 KB
testcase_06 AC 72 ms
71,428 KB
testcase_07 AC 70 ms
71,336 KB
testcase_08 AC 71 ms
71,416 KB
testcase_09 WA -
testcase_10 AC 73 ms
71,364 KB
testcase_11 WA -
testcase_12 AC 78 ms
76,300 KB
testcase_13 AC 81 ms
76,256 KB
testcase_14 WA -
testcase_15 AC 77 ms
76,188 KB
testcase_16 AC 73 ms
71,372 KB
testcase_17 AC 80 ms
76,544 KB
testcase_18 WA -
testcase_19 AC 79 ms
76,340 KB
testcase_20 AC 75 ms
76,324 KB
testcase_21 AC 78 ms
76,312 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 76 ms
76,472 KB
testcase_25 AC 78 ms
76,192 KB
testcase_26 WA -
testcase_27 AC 77 ms
76,304 KB
testcase_28 AC 71 ms
71,588 KB
testcase_29 AC 75 ms
71,072 KB
testcase_30 AC 79 ms
76,388 KB
testcase_31 AC 72 ms
71,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

#繰り返し前のテンプレ
tenple = [
	[0, 1, 1, 4, 2, 1],
	[2, 3, 3, 4, 3, 0],
	[4, 2, 0]
]

# 基本の繰り返し系
rep = [
	[2, 1, 0],
	[1, 3, 3, 2, 3, 0],
	[2, 1, 4, 5, 0, 6],
	[4, 6, 8, 5, 8, 8],
	[5, 4, 6]
]

#終了 (n%4 == 1)
rep2 = [
	[0, 1, 2],
	[2, 3, 3, 0, 1, 3],
	[1, 4, 4, 0, 4, 2]
]

#終了 (n%4 == 2)
rep3 = [
	[0, 1, 2],
	[0, 3, 1, 4, 2, 5],
	[0, 3, 1, 4, 2, 5],
	[3, 4, 5, 6, 6, 6]
]

#終了 (n%4 == 0)
rep4 = [
	[0, 1, 2],
	[0, 2, 3, 3, 1, 3],
	[0, 1, 2, 9, 4, 5],
	[5, 8, 9, 0, 4, 6],
	[5, 8, 9, 0, 4, 6],
	[6, 7, 7, 8, 0, 7]
]

if n == 1:
	print("1\n0\n0\n0\n1\n1")
elif n == 2:
	print("-1")
elif n == 3:
	print("012\n345\n345\n225\n141\n300")
elif n == 4:
	print("4551\n3662\n6777\n3005\n3442\n0112")
elif n == 5:
	print("79142\n80653\n80453\n90966\n87754\n11223")
elif n == 6:
	print("022586\n133097\n166600\n244397\n455898\n100667")
elif n % 4 == 3:
	a = [[] for i in range(n)]
	a[0] = tenple[0]
	a[1] = tenple[1]
	a[2] = tenple[2]
	now = 5
	piv = 2
	while piv < n - 1:
		for j in range(5):
			for l in rep[j]:
				a[piv+j].append((l+now)%10)
		now += 9
		piv += 4
	a[n-1].append(now%10)
	a[n-1].append(now%10)
	a[n-1].append(now%10)
	r = ["".join([str(a[i][j]) for i in range(n)]) for j in range(6)]
	print(*r,sep="\n")
elif n % 4 == 1:
	a = [[] for i in range(n)]
	a[0] = tenple[0]
	a[1] = tenple[1]
	a[2] = tenple[2]
	now = 5
	piv = 2
	while piv < n - 3:
		for j in range(5):
			for l in rep[j]:
				a[piv+j].append((l+now)%10)
		now += 9
		piv += 4
	for j in range(3):
		for l in rep2[j]:
			a[piv+j].append((l+now)%10)
	r = ["".join([str(a[i][j]) for i in range(n)]) for j in range(6)]
	print(*r,sep="\n")
elif n % 4 == 2:
	a = [[] for i in range(n)]
	a[0] = tenple[0]
	a[1] = tenple[1]
	a[2] = tenple[2]
	now = 5
	piv = 2
	while piv < n - 4:
		for j in range(5):
			for l in rep[j]:
				a[piv+j].append((l+now)%10)
		now += 9
		piv += 4
	for j in range(4):
		for l in rep3[j]:
			a[piv+j].append((l+now)%10)
	r = ["".join([str(a[i][j]) for i in range(n)]) for j in range(6)]
	print(*r,sep="\n")
elif n % 4 == 0:
	a = [[] for i in range(n)]
	a[0] = tenple[0]
	a[1] = tenple[1]
	a[2] = tenple[2]
	now = 5
	piv = 2
	while piv < n - 9:
		for j in range(5):
			for l in rep[j]:
				a[piv+j].append((l+now)%10)
		now += 9
		piv += 4
	for j in range(6):
		for l in rep4[j]:
			a[piv+j].append((l+now)%10)
	r = ["".join([str(a[i][j]) for i in range(n)]) for j in range(6)]
	print(*r,sep="\n")
0