結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,256 KB
testcase_01 WA -
testcase_02 AC 36 ms
52,224 KB
testcase_03 AC 36 ms
52,608 KB
testcase_04 AC 35 ms
52,480 KB
testcase_05 AC 39 ms
52,352 KB
testcase_06 AC 38 ms
52,352 KB
testcase_07 AC 36 ms
52,352 KB
testcase_08 AC 35 ms
52,736 KB
testcase_09 AC 35 ms
52,608 KB
testcase_10 AC 53 ms
64,384 KB
testcase_11 AC 54 ms
64,768 KB
testcase_12 AC 51 ms
64,000 KB
testcase_13 AC 50 ms
64,000 KB
testcase_14 AC 55 ms
65,280 KB
testcase_15 AC 150 ms
141,824 KB
testcase_16 AC 161 ms
147,712 KB
testcase_17 AC 124 ms
118,520 KB
testcase_18 AC 164 ms
151,424 KB
testcase_19 AC 146 ms
136,448 KB
testcase_20 AC 117 ms
114,736 KB
testcase_21 AC 166 ms
151,520 KB
testcase_22 AC 142 ms
128,896 KB
testcase_23 AC 139 ms
122,652 KB
testcase_24 AC 118 ms
113,152 KB
testcase_25 AC 169 ms
152,080 KB
testcase_26 AC 167 ms
154,624 KB
testcase_27 AC 166 ms
153,188 KB
testcase_28 AC 167 ms
152,704 KB
testcase_29 AC 171 ms
152,320 KB
testcase_30 AC 169 ms
154,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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