結果
問題 | No.2732 Similar Permutations |
ユーザー | hiro1729 |
提出日時 | 2024-04-09 07:16:49 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 670 bytes |
コンパイル時間 | 361 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 532,192 KB |
最終ジャッジ日時 | 2024-10-01 17:08:32 |
合計ジャッジ時間 | 36,569 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 46 ms
59,008 KB |
testcase_01 | AC | 47 ms
53,376 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | RE | - |
testcase_48 | RE | - |
testcase_49 | RE | - |
testcase_50 | RE | - |
testcase_51 | RE | - |
testcase_52 | RE | - |
testcase_53 | RE | - |
testcase_54 | RE | - |
testcase_55 | RE | - |
testcase_56 | RE | - |
testcase_57 | RE | - |
testcase_58 | RE | - |
testcase_59 | RE | - |
testcase_60 | RE | - |
testcase_61 | RE | - |
testcase_62 | RE | - |
testcase_63 | AC | 46 ms
53,888 KB |
testcase_64 | AC | 50 ms
53,760 KB |
testcase_65 | AC | 47 ms
53,888 KB |
testcase_66 | AC | 46 ms
53,888 KB |
testcase_67 | AC | 46 ms
53,504 KB |
testcase_68 | AC | 46 ms
53,760 KB |
testcase_69 | AC | 46 ms
53,504 KB |
testcase_70 | AC | 46 ms
54,016 KB |
testcase_71 | AC | 47 ms
53,504 KB |
testcase_72 | AC | 46 ms
53,760 KB |
testcase_73 | AC | 47 ms
53,504 KB |
testcase_74 | AC | 47 ms
53,632 KB |
testcase_75 | AC | 47 ms
53,504 KB |
testcase_76 | AC | 47 ms
53,632 KB |
testcase_77 | AC | 45 ms
53,504 KB |
testcase_78 | AC | 48 ms
53,760 KB |
testcase_79 | AC | 47 ms
53,632 KB |
testcase_80 | AC | 47 ms
53,760 KB |
testcase_81 | AC | 46 ms
53,760 KB |
testcase_82 | AC | 47 ms
54,016 KB |
testcase_83 | AC | 53 ms
61,056 KB |
testcase_84 | AC | 54 ms
60,928 KB |
testcase_85 | AC | 53 ms
61,184 KB |
testcase_86 | AC | 53 ms
61,056 KB |
testcase_87 | AC | 54 ms
61,824 KB |
testcase_88 | AC | 54 ms
61,568 KB |
testcase_89 | AC | 55 ms
61,952 KB |
testcase_90 | AC | 54 ms
62,080 KB |
testcase_91 | AC | 65 ms
69,760 KB |
testcase_92 | AC | 65 ms
69,248 KB |
testcase_93 | AC | 65 ms
69,120 KB |
testcase_94 | AC | 66 ms
69,120 KB |
testcase_95 | AC | 191 ms
108,416 KB |
testcase_96 | AC | 203 ms
110,848 KB |
testcase_97 | AC | 185 ms
108,288 KB |
testcase_98 | AC | 196 ms
107,264 KB |
testcase_99 | MLE | - |
testcase_100 | -- | - |
testcase_101 | -- | - |
testcase_102 | -- | - |
ソースコード
from itertools import permutations from collections import defaultdict N = int(input()) A = list(map(int, input().split())) if N <= 10: d = defaultdict(list) for p in permutations(list(range(1, N + 1))): x = 0 for i in range(N): x ^= A[i] + p[i] d[x].append(p) for c, ps in d.items(): if len(ps) >= 2: print(*ps[0]) print(*ps[1]) exit() exit(print(-1)) P = list(range(1, N + 1)) x = 0 for i in range(N): x ^= A[i] + i + 1 ax = 0 for i in range(10, N): ax ^= A[i] + (i + 1) for p in permutations(list(range(1, 11))): nx = 0 for i in range(10): nx ^= A[i] + p[i] if x == ax ^ nx: print(*P) print(*(p + list(range(11, N + 1)))) exit()