結果

問題 No.2061 XOR Sort
ユーザー tamatotamato
提出日時 2022-08-26 22:30:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 790 ms / 2,000 ms
コード長 702 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 293,472 KB
最終ジャッジ日時 2024-10-13 23:08:05
合計ジャッジ時間 10,770 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,584 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 41 ms
51,584 KB
testcase_03 AC 45 ms
58,880 KB
testcase_04 AC 40 ms
52,096 KB
testcase_05 AC 44 ms
57,856 KB
testcase_06 AC 45 ms
57,856 KB
testcase_07 AC 44 ms
57,728 KB
testcase_08 AC 40 ms
51,968 KB
testcase_09 AC 43 ms
57,728 KB
testcase_10 AC 39 ms
52,224 KB
testcase_11 AC 44 ms
57,600 KB
testcase_12 AC 45 ms
57,856 KB
testcase_13 AC 40 ms
51,968 KB
testcase_14 AC 412 ms
221,156 KB
testcase_15 AC 410 ms
221,400 KB
testcase_16 AC 757 ms
293,472 KB
testcase_17 AC 520 ms
262,856 KB
testcase_18 AC 543 ms
274,248 KB
testcase_19 AC 513 ms
262,468 KB
testcase_20 AC 105 ms
83,584 KB
testcase_21 AC 246 ms
144,328 KB
testcase_22 AC 432 ms
222,180 KB
testcase_23 AC 65 ms
71,552 KB
testcase_24 AC 778 ms
287,984 KB
testcase_25 AC 782 ms
288,120 KB
testcase_26 AC 785 ms
286,312 KB
testcase_27 AC 790 ms
287,848 KB
testcase_28 AC 782 ms
286,532 KB
testcase_29 AC 136 ms
118,912 KB
testcase_30 AC 40 ms
51,712 KB
testcase_31 AC 73 ms
75,392 KB
testcase_32 AC 40 ms
51,712 KB
testcase_33 AC 40 ms
52,096 KB
testcase_34 AC 41 ms
51,968 KB
testcase_35 AC 40 ms
51,840 KB
testcase_36 AC 40 ms
51,712 KB
testcase_37 AC 40 ms
51,840 KB
testcase_38 AC 41 ms
52,096 KB
testcase_39 AC 40 ms
52,096 KB
testcase_40 AC 40 ms
51,968 KB
testcase_41 AC 41 ms
51,968 KB
testcase_42 AC 39 ms
51,968 KB
testcase_43 AC 40 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353


def main():
    import sys
    input = sys.stdin.readline

    N = int(input())
    A = [list(map(int, input().split()))]

    ans = 1
    for i in range(30, -1, -1):
        flg = 0
        A_new = []
        for AA in A:
            a0 = []
            a1 = []
            for a in AA:
                if a >> i & 1:
                    a1.append(a)
                else:
                    a0.append(a)
            if a0 and a1:
                flg = 1
            if a0:
                A_new.append(a0)
            if a1:
                A_new.append(a1)
        if flg:
            ans = (ans * 2) % mod
        A = A_new
    print(ans)


if __name__ == '__main__':
    main()
0