結果

問題 No.2719 Equal Inner Products in Permutation
ユーザー minimumminimum
提出日時 2024-04-05 22:29:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 514 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 155,264 KB
最終ジャッジ日時 2024-10-01 02:41:42
合計ジャッジ時間 7,769 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 34 ms
51,968 KB
testcase_02 AC 34 ms
52,224 KB
testcase_03 AC 34 ms
52,224 KB
testcase_04 WA -
testcase_05 AC 35 ms
52,096 KB
testcase_06 AC 35 ms
52,352 KB
testcase_07 WA -
testcase_08 AC 35 ms
52,352 KB
testcase_09 AC 35 ms
52,224 KB
testcase_10 AC 45 ms
62,080 KB
testcase_11 AC 48 ms
62,464 KB
testcase_12 AC 48 ms
62,336 KB
testcase_13 AC 47 ms
62,208 KB
testcase_14 WA -
testcase_15 AC 148 ms
141,616 KB
testcase_16 AC 163 ms
150,656 KB
testcase_17 AC 122 ms
119,520 KB
testcase_18 AC 163 ms
150,984 KB
testcase_19 WA -
testcase_20 AC 116 ms
116,340 KB
testcase_21 WA -
testcase_22 AC 131 ms
126,848 KB
testcase_23 AC 128 ms
122,752 KB
testcase_24 AC 113 ms
114,048 KB
testcase_25 WA -
testcase_26 AC 164 ms
152,756 KB
testcase_27 AC 164 ms
154,908 KB
testcase_28 WA -
testcase_29 AC 163 ms
152,912 KB
testcase_30 AC 171 ms
155,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

a, b, c = [], [], []
s = 0
if N % 3 == 1:
    a, b, c = [1, 2, 4, 11], [7, 9, 10, 12], [8, 5, 6, 3]
    s = 12
elif N % 3 == 2:
    a, b, c = [1, 4], [3, 6], [5, 2]
else:
    a, b, c = [1, 2, 9], [6, 8, 7], [3, 4, 5]
    s = 9

while len(a) < N:
    a.append(s + 1)
    a.append(s + 2)
    a.append(s + 9)
    b.append(s + 6)
    b.append(s + 8)
    b.append(s + 7)
    c.append(s + 3)
    c.append(s + 4)
    c.append(s + 5)
    s += 9

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