結果
問題 | No.2719 Equal Inner Products in Permutation |
ユーザー | ecottea |
提出日時 | 2024-02-03 19:25:07 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 561 bytes |
コンパイル時間 | 356 ms |
コンパイル使用メモリ | 82,272 KB |
実行使用メモリ | 848,188 KB |
最終ジャッジ日時 | 2024-09-28 12:46:56 |
合計ジャッジ時間 | 4,043 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
55,100 KB |
testcase_01 | AC | 40 ms
53,632 KB |
testcase_02 | AC | 41 ms
53,248 KB |
testcase_03 | AC | 40 ms
53,376 KB |
testcase_04 | AC | 41 ms
53,504 KB |
testcase_05 | MLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
ソースコード
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 b = b2 c = c2 elif n % 3 == 0: a = a3 b = b3 c = c3 else: a = a4 b = b4 c = c4 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))