結果

問題 No.2719 Equal Inner Products in Permutation
ユーザー hiro1729hiro1729
提出日時 2024-04-05 23:06:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 388 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 138,368 KB
最終ジャッジ日時 2024-10-01 03:01:22
合計ジャッジ時間 6,998 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 WA -
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 36 ms
52,096 KB
testcase_04 AC 36 ms
52,224 KB
testcase_05 AC 36 ms
51,936 KB
testcase_06 AC 37 ms
52,480 KB
testcase_07 AC 37 ms
52,096 KB
testcase_08 AC 36 ms
52,480 KB
testcase_09 AC 35 ms
52,096 KB
testcase_10 AC 46 ms
62,720 KB
testcase_11 AC 46 ms
63,104 KB
testcase_12 AC 46 ms
62,848 KB
testcase_13 AC 44 ms
62,464 KB
testcase_14 AC 45 ms
62,848 KB
testcase_15 AC 145 ms
127,360 KB
testcase_16 AC 159 ms
132,864 KB
testcase_17 AC 120 ms
118,528 KB
testcase_18 AC 152 ms
133,248 KB
testcase_19 AC 143 ms
126,720 KB
testcase_20 AC 118 ms
114,560 KB
testcase_21 AC 162 ms
137,736 KB
testcase_22 AC 131 ms
121,728 KB
testcase_23 AC 125 ms
122,624 KB
testcase_24 AC 111 ms
113,920 KB
testcase_25 AC 163 ms
138,112 KB
testcase_26 AC 164 ms
138,240 KB
testcase_27 AC 163 ms
138,368 KB
testcase_28 AC 162 ms
137,984 KB
testcase_29 AC 160 ms
138,112 KB
testcase_30 AC 166 ms
138,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
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