結果

問題 No.2719 Equal Inner Products in Permutation
ユーザー hiro1729hiro1729
提出日時 2024-04-05 23:08:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 416 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 138,728 KB
最終ジャッジ日時 2024-10-01 03:02:53
合計ジャッジ時間 7,616 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,632 KB
testcase_01 AC 39 ms
52,452 KB
testcase_02 AC 39 ms
52,996 KB
testcase_03 AC 39 ms
52,392 KB
testcase_04 AC 39 ms
53,248 KB
testcase_05 AC 39 ms
51,880 KB
testcase_06 AC 40 ms
52,352 KB
testcase_07 AC 39 ms
52,820 KB
testcase_08 AC 38 ms
52,544 KB
testcase_09 AC 40 ms
52,576 KB
testcase_10 AC 50 ms
63,860 KB
testcase_11 AC 49 ms
64,136 KB
testcase_12 AC 50 ms
63,320 KB
testcase_13 AC 49 ms
62,604 KB
testcase_14 AC 50 ms
63,668 KB
testcase_15 AC 154 ms
127,680 KB
testcase_16 AC 167 ms
133,012 KB
testcase_17 AC 129 ms
118,504 KB
testcase_18 AC 168 ms
133,176 KB
testcase_19 AC 151 ms
126,700 KB
testcase_20 AC 122 ms
114,520 KB
testcase_21 AC 173 ms
137,880 KB
testcase_22 AC 137 ms
121,732 KB
testcase_23 AC 133 ms
123,240 KB
testcase_24 AC 122 ms
114,172 KB
testcase_25 AC 175 ms
138,336 KB
testcase_26 AC 175 ms
138,328 KB
testcase_27 AC 177 ms
138,328 KB
testcase_28 AC 176 ms
138,480 KB
testcase_29 AC 178 ms
138,728 KB
testcase_30 AC 176 ms
138,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
if N == 1:
	exit(print(-1))
A = []
B = []
C = []
st = 0
if N % 3 == 2:
	A = [2, 4]
	B = [1, 6]
	C = [3, 5]
	st = 15
if N % 3 == 0:
	A = [1, 5, 9]
	B = [2, 6, 7]
	C = [3, 4, 8]
	st = 18
if N % 3 == 1:
	A = [1, 4, 7, 12]
	B = [2, 5, 8, 11]
	C = [3, 6, 9, 10]
	st = 21
for i in range(st, 3 * N + 1, 9):
	A += [i - 8, i - 4, i]
	B += [i - 7, i - 3, i - 2]
	C += [i - 6, i - 5, i - 1]
print(*(B + A + C))
0