結果

問題 No.2732 Similar Permutations
ユーザー Yukino DX.Yukino DX.
提出日時 2024-04-27 14:49:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 848 bytes
コンパイル時間 494 ms
コンパイル使用メモリ 81,948 KB
実行使用メモリ 106,564 KB
最終ジャッジ日時 2024-04-27 14:50:14
合計ジャッジ時間 57,853 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,336 KB
testcase_01 AC 33 ms
52,836 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 AC 34 ms
53,528 KB
testcase_64 AC 34 ms
52,764 KB
testcase_65 AC 34 ms
53,012 KB
testcase_66 AC 34 ms
51,820 KB
testcase_67 AC 35 ms
52,740 KB
testcase_68 AC 32 ms
53,044 KB
testcase_69 AC 32 ms
52,924 KB
testcase_70 AC 35 ms
53,060 KB
testcase_71 AC 33 ms
52,884 KB
testcase_72 AC 32 ms
53,296 KB
testcase_73 AC 33 ms
53,136 KB
testcase_74 AC 32 ms
52,944 KB
testcase_75 AC 36 ms
52,468 KB
testcase_76 AC 33 ms
53,000 KB
testcase_77 AC 32 ms
52,804 KB
testcase_78 AC 35 ms
52,924 KB
testcase_79 AC 33 ms
52,248 KB
testcase_80 AC 33 ms
53,084 KB
testcase_81 AC 36 ms
52,500 KB
testcase_82 AC 34 ms
52,416 KB
testcase_83 AC 34 ms
52,720 KB
testcase_84 AC 33 ms
53,224 KB
testcase_85 AC 32 ms
53,116 KB
testcase_86 AC 32 ms
52,488 KB
testcase_87 AC 35 ms
52,948 KB
testcase_88 AC 33 ms
52,008 KB
testcase_89 AC 32 ms
53,096 KB
testcase_90 AC 35 ms
53,396 KB
testcase_91 AC 33 ms
52,412 KB
testcase_92 AC 34 ms
52,972 KB
testcase_93 AC 34 ms
53,016 KB
testcase_94 AC 33 ms
52,824 KB
testcase_95 AC 32 ms
52,636 KB
testcase_96 AC 34 ms
53,388 KB
testcase_97 AC 37 ms
52,400 KB
testcase_98 AC 33 ms
52,840 KB
testcase_99 AC 34 ms
54,244 KB
testcase_100 AC 33 ms
52,752 KB
testcase_101 AC 34 ms
53,756 KB
testcase_102 AC 32 ms
52,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations

def solve_less10():
    hm = dict()
    for p in permutations(range(1,n+1), n):
        xor = 0
        for i in range(n):
            xor ^= p[i] + a[i]

        if xor in hm:
            print(*hm[xor])
            print(*p)
            exit()

        hm[xor] = p

    print(-1)


def solve_more10():
    xor_base = 0
    for i in range(11, n):
        xor_base ^= i + a[i]

    hm = dict()
    for p in permutations(range(1,11), 10):
        xor = 0
        for i in range(10):
            xor ^= p[i] + a[i]

        if xor_base ^ xor in hm:
            print(*(hm[xor] + tuple(range(11, n))))
            print(*(p + tuple(range(11, n))))
            exit()

        hm[xor] = p

    print(-1)


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

if n <= 10:
    solve_less10()
else:
    solve_more10()
0