結果

問題 No.2719 Equal Inner Products in Permutation
ユーザー hiryuNhiryuN
提出日時 2024-04-05 23:04:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 997 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 150,756 KB
最終ジャッジ日時 2024-10-01 03:00:46
合計ジャッジ時間 7,964 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,464 KB
testcase_01 AC 38 ms
52,344 KB
testcase_02 AC 38 ms
53,416 KB
testcase_03 AC 38 ms
53,084 KB
testcase_04 AC 40 ms
53,356 KB
testcase_05 AC 40 ms
53,088 KB
testcase_06 AC 40 ms
52,136 KB
testcase_07 AC 40 ms
53,152 KB
testcase_08 AC 40 ms
52,756 KB
testcase_09 AC 39 ms
53,440 KB
testcase_10 AC 59 ms
68,260 KB
testcase_11 AC 60 ms
68,860 KB
testcase_12 AC 59 ms
68,624 KB
testcase_13 AC 59 ms
67,028 KB
testcase_14 AC 59 ms
67,156 KB
testcase_15 AC 172 ms
140,604 KB
testcase_16 AC 185 ms
148,568 KB
testcase_17 AC 140 ms
121,008 KB
testcase_18 AC 181 ms
148,836 KB
testcase_19 AC 164 ms
135,376 KB
testcase_20 AC 133 ms
116,364 KB
testcase_21 AC 181 ms
148,648 KB
testcase_22 AC 150 ms
127,644 KB
testcase_23 AC 143 ms
122,692 KB
testcase_24 AC 131 ms
115,412 KB
testcase_25 AC 186 ms
150,472 KB
testcase_26 AC 189 ms
150,660 KB
testcase_27 AC 190 ms
150,644 KB
testcase_28 AC 186 ms
150,756 KB
testcase_29 AC 185 ms
150,532 KB
testcase_30 AC 184 ms
150,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
mid=list(range(1,n+1))
if n==1:
    print(-1)
    exit()
if n==2:
    print(1,6,2,4,3,5)
    exit()
if n==5:
    print(11,8,13,5,15,1,2,3,4,6,10,9,12,7,14)
    exit()
m=sum(mid)
A=list(range(n+1,3*n+1,2))
B=list(range(n+2,3*n+1,2))
if m%2==1:
    mid[-1],A[0]=A[0],mid[-1]
for i in reversed(range(n)):
    if mid[i]%2==0:
        A[0],A[i]=A[i],A[0]
        B[0],B[i]=B[i],B[0]
        key=i
        break
ax=[]
for i in range(n):
    if i==key and m%2==1:
        ax.append(mid[i]*2)
    else:
        ax.append(mid[i])
ax.sort()
ay=sum(ax)
ay//=2
S={0}
zz=0
for i in ax:
    if zz<ay:
        zz+=i
        S.add(i)
    else:
        break
daiv=zz-ay
if daiv!=0:
  for i in range(2):
    if daiv-i in S:
        S.remove(i)
        S.remove(daiv-i)
        break

for i in range(n):
    if mid[i] in S:
        A[i],B[i]=B[i],A[i]

#print(S)      
#print(ax,ay)        
#print(mid,A,B)
a=0
b=0
for i in range(n):
    a+=mid[i]*A[i]
    b+=mid[i]*B[i]
#print(a,b)
print(*(A+mid+B))
0