結果

問題 No.2732 Similar Permutations
ユーザー Yukino DX.Yukino DX.
提出日時 2024-04-20 10:56:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 735 bytes
コンパイル時間 526 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 116,864 KB
最終ジャッジ日時 2024-10-12 06:33:26
合計ジャッジ時間 25,720 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 64 ms
80,640 KB
testcase_06 WA -
testcase_07 AC 86 ms
92,416 KB
testcase_08 AC 66 ms
83,164 KB
testcase_09 AC 56 ms
75,648 KB
testcase_10 AC 141 ms
116,460 KB
testcase_11 AC 49 ms
71,680 KB
testcase_12 AC 139 ms
110,464 KB
testcase_13 AC 139 ms
110,336 KB
testcase_14 AC 139 ms
110,272 KB
testcase_15 AC 139 ms
110,464 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 134 ms
112,896 KB
testcase_19 AC 136 ms
110,720 KB
testcase_20 AC 154 ms
116,480 KB
testcase_21 AC 142 ms
110,592 KB
testcase_22 AC 98 ms
98,196 KB
testcase_23 AC 138 ms
110,332 KB
testcase_24 AC 99 ms
100,480 KB
testcase_25 AC 138 ms
110,216 KB
testcase_26 AC 127 ms
111,744 KB
testcase_27 AC 142 ms
110,464 KB
testcase_28 AC 119 ms
108,160 KB
testcase_29 WA -
testcase_30 AC 115 ms
104,448 KB
testcase_31 AC 141 ms
110,592 KB
testcase_32 AC 134 ms
112,384 KB
testcase_33 AC 136 ms
110,208 KB
testcase_34 AC 107 ms
101,336 KB
testcase_35 AC 138 ms
110,528 KB
testcase_36 AC 136 ms
112,512 KB
testcase_37 AC 139 ms
110,476 KB
testcase_38 AC 127 ms
112,428 KB
testcase_39 AC 135 ms
110,464 KB
testcase_40 AC 128 ms
111,744 KB
testcase_41 AC 136 ms
110,792 KB
testcase_42 AC 116 ms
107,264 KB
testcase_43 AC 141 ms
116,864 KB
testcase_44 AC 95 ms
97,536 KB
testcase_45 AC 138 ms
116,608 KB
testcase_46 AC 132 ms
112,512 KB
testcase_47 AC 144 ms
116,612 KB
testcase_48 AC 104 ms
100,852 KB
testcase_49 AC 138 ms
116,096 KB
testcase_50 AC 104 ms
100,224 KB
testcase_51 AC 136 ms
115,968 KB
testcase_52 AC 126 ms
111,232 KB
testcase_53 WA -
testcase_54 AC 137 ms
110,688 KB
testcase_55 AC 141 ms
110,464 KB
testcase_56 AC 136 ms
110,592 KB
testcase_57 WA -
testcase_58 AC 117 ms
104,576 KB
testcase_59 WA -
testcase_60 WA -
testcase_61 AC 95 ms
95,360 KB
testcase_62 WA -
testcase_63 AC 36 ms
52,096 KB
testcase_64 AC 34 ms
52,224 KB
testcase_65 AC 36 ms
52,096 KB
testcase_66 AC 34 ms
52,480 KB
testcase_67 AC 35 ms
52,096 KB
testcase_68 AC 35 ms
52,096 KB
testcase_69 AC 36 ms
52,224 KB
testcase_70 AC 36 ms
51,968 KB
testcase_71 AC 35 ms
51,968 KB
testcase_72 AC 36 ms
51,840 KB
testcase_73 AC 34 ms
51,968 KB
testcase_74 AC 36 ms
52,096 KB
testcase_75 AC 36 ms
52,096 KB
testcase_76 AC 36 ms
52,316 KB
testcase_77 AC 36 ms
52,096 KB
testcase_78 AC 36 ms
52,096 KB
testcase_79 AC 36 ms
51,840 KB
testcase_80 AC 35 ms
52,224 KB
testcase_81 AC 35 ms
52,096 KB
testcase_82 AC 36 ms
52,096 KB
testcase_83 AC 37 ms
51,840 KB
testcase_84 AC 36 ms
52,096 KB
testcase_85 AC 35 ms
52,096 KB
testcase_86 AC 35 ms
52,224 KB
testcase_87 AC 36 ms
52,096 KB
testcase_88 AC 35 ms
51,968 KB
testcase_89 AC 36 ms
52,352 KB
testcase_90 AC 37 ms
51,968 KB
testcase_91 AC 36 ms
52,096 KB
testcase_92 AC 37 ms
51,968 KB
testcase_93 AC 37 ms
52,096 KB
testcase_94 AC 37 ms
52,352 KB
testcase_95 AC 37 ms
52,224 KB
testcase_96 AC 36 ms
52,224 KB
testcase_97 AC 37 ms
52,064 KB
testcase_98 AC 36 ms
51,968 KB
testcase_99 AC 36 ms
52,352 KB
testcase_100 AC 36 ms
52,480 KB
testcase_101 AC 35 ms
52,096 KB
testcase_102 AC 35 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations

n = int(input())
a = list(map(int, input().split()))

memo = dict()
if n < 10:
    for per in permutations(range(1, n + 1)):
        xor = 0
        for i in range(n):
            xor ^= a[i] + per[i]

        if xor in memo:
            print(*memo[xor])
            print(*per)
            exit()

        memo[xor] = tuple(per)

else:
    for per in permutations(range(n - 10 + 1, n + 1)):
        xor = 0
        for i in range(10):
            xor ^= a[n - 10 + i - 1] + per[i - 1]

        if xor in memo:
            print(*(tuple(range(1, n - 10 + 1)) + memo[xor]))
            print(*(tuple(range(1, n - 10 + 1)) + tuple(per)))
            exit()

        memo[xor] = tuple(per)

print(-1)
0