結果

問題 No.2719 Equal Inner Products in Permutation
ユーザー PNJPNJ
提出日時 2024-04-05 22:25:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 204 ms / 2,000 ms
コード長 1,077 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 154,368 KB
最終ジャッジ日時 2024-10-01 02:38:20
合計ジャッジ時間 7,540 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 35 ms
52,480 KB
testcase_02 AC 36 ms
52,480 KB
testcase_03 AC 36 ms
52,352 KB
testcase_04 AC 35 ms
52,480 KB
testcase_05 AC 36 ms
52,328 KB
testcase_06 AC 38 ms
52,224 KB
testcase_07 AC 41 ms
52,608 KB
testcase_08 AC 36 ms
52,224 KB
testcase_09 AC 35 ms
52,480 KB
testcase_10 AC 52 ms
64,896 KB
testcase_11 AC 52 ms
65,152 KB
testcase_12 AC 51 ms
64,000 KB
testcase_13 AC 54 ms
63,872 KB
testcase_14 AC 55 ms
65,664 KB
testcase_15 AC 155 ms
141,700 KB
testcase_16 AC 166 ms
147,712 KB
testcase_17 AC 126 ms
118,656 KB
testcase_18 AC 165 ms
151,640 KB
testcase_19 AC 145 ms
136,892 KB
testcase_20 AC 122 ms
114,856 KB
testcase_21 AC 167 ms
151,424 KB
testcase_22 AC 139 ms
128,640 KB
testcase_23 AC 132 ms
122,496 KB
testcase_24 AC 119 ms
113,664 KB
testcase_25 AC 165 ms
151,936 KB
testcase_26 AC 173 ms
154,112 KB
testcase_27 AC 167 ms
153,216 KB
testcase_28 AC 202 ms
152,704 KB
testcase_29 AC 204 ms
152,192 KB
testcase_30 AC 170 ms
154,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
if N == 1:
  print(-1)
  exit()

if N % 4 == 0:
  P = []
  Q = []
  R = []
  for i in range(N):
    if i % 4 == 0 or i % 4 == 3:
      P.append(3*i + 1)
      R.append(3*i + 2)
    else:
      P.append(3*i + 2)
      R.append(3*i + 1)
    Q.append(3*i + 3)

elif N % 4 == 1:
  P = [1,4,7,8,14]
  Q = [3,6,12,13,15]
  R = [5,2,10,11,9]
  for i in range(5,N):
    j = i - 5
    if j % 4 == 0 or j % 4 == 3:
      P.append(3*i + 1)
      R.append(3*i + 2)
    else:
      P.append(3*i + 2)
      R.append(3*i + 1)
    Q.append(3*i + 3)

elif N % 4 == 2:
  P = [1,4]
  Q = [3,6]
  R = [5,2]
  for i in range(2,N):
    j = i - 2
    if j % 4 == 0 or j % 4 == 3:
      P.append(3*i + 1)
      R.append(3*i + 2)
    else:
      P.append(3*i + 2)
      R.append(3*i + 1)
    Q.append(3*i + 3)

else:
  P = [1,2,8]
  Q = [3,6,9]
  R = [7,5,4]
  for i in range(3,N):
    j = i - 3
    if j % 4 == 0 or j % 4 == 3:
      P.append(3*i + 1)
      R.append(3*i + 2)
    else:
      P.append(3*i + 2)
      R.append(3*i + 1)
    Q.append(3*i + 3)

ans = P + Q + R
print(*ans)
0