結果

問題 No.2719 Equal Inner Products in Permutation
ユーザー ecotteaecottea
提出日時 2024-02-03 19:27:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 624 bytes
コンパイル時間 417 ms
コンパイル使用メモリ 82,044 KB
実行使用メモリ 140,456 KB
最終ジャッジ日時 2024-09-28 12:47:04
合計ジャッジ時間 7,371 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,296 KB
testcase_01 AC 40 ms
54,244 KB
testcase_02 AC 42 ms
54,088 KB
testcase_03 AC 42 ms
53,824 KB
testcase_04 AC 40 ms
54,624 KB
testcase_05 AC 40 ms
54,000 KB
testcase_06 AC 40 ms
55,448 KB
testcase_07 AC 41 ms
53,564 KB
testcase_08 AC 40 ms
54,924 KB
testcase_09 AC 41 ms
55,520 KB
testcase_10 AC 57 ms
68,244 KB
testcase_11 AC 56 ms
68,956 KB
testcase_12 AC 54 ms
66,284 KB
testcase_13 AC 54 ms
67,504 KB
testcase_14 AC 57 ms
67,768 KB
testcase_15 AC 158 ms
130,836 KB
testcase_16 AC 167 ms
136,660 KB
testcase_17 AC 132 ms
118,936 KB
testcase_18 AC 173 ms
137,104 KB
testcase_19 AC 154 ms
126,724 KB
testcase_20 AC 124 ms
115,624 KB
testcase_21 AC 170 ms
138,156 KB
testcase_22 AC 136 ms
119,176 KB
testcase_23 AC 137 ms
123,020 KB
testcase_24 AC 125 ms
113,760 KB
testcase_25 AC 177 ms
138,972 KB
testcase_26 AC 174 ms
137,956 KB
testcase_27 AC 180 ms
140,080 KB
testcase_28 AC 170 ms
139,196 KB
testcase_29 AC 173 ms
137,520 KB
testcase_30 AC 178 ms
140,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

n = int(input())

if n == 1:
    print(-1)
    exit(0)

a2 = [1, 4]
b2 = [3, 6]
c2 = [5, 2]
a3 = [1, 2, 9]
b3 = [6, 8, 7]
c3 = [3, 4, 5]
a4 = [1, 2, 4, 11]
b4 = [7, 9, 10, 12]
c4 = [8, 5, 6, 3]

if n % 3 == 2:
    a = a2.copy()
    b = b2.copy()
    c = c2.copy()
elif n % 3 == 0:
    a = a3.copy()
    b = b3.copy()
    c = c3.copy()
else:
    a = a4.copy()
    b = b4.copy()
    c = c4.copy()

l = len(a)
while l < n:
    for x in a3:
        a.append(x + 3 * l)
    for x in b3:
        b.append(x + 3 * l)
    for x in c3:
        c.append(x + 3 * l)
    l += 3

print(*(a + b + c))
0