結果

問題 No.2061 XOR Sort
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2022-08-12 08:25:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 334 ms / 2,000 ms
コード長 637 bytes
コンパイル時間 431 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 198,304 KB
最終ジャッジ日時 2024-09-22 13:11:06
合計ジャッジ時間 7,215 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,348 KB
testcase_01 AC 38 ms
52,212 KB
testcase_02 AC 35 ms
52,284 KB
testcase_03 AC 36 ms
51,936 KB
testcase_04 AC 36 ms
52,868 KB
testcase_05 AC 36 ms
53,216 KB
testcase_06 AC 37 ms
52,664 KB
testcase_07 AC 35 ms
52,556 KB
testcase_08 AC 36 ms
52,992 KB
testcase_09 AC 36 ms
52,532 KB
testcase_10 AC 35 ms
52,740 KB
testcase_11 AC 35 ms
52,428 KB
testcase_12 AC 36 ms
53,980 KB
testcase_13 AC 35 ms
52,684 KB
testcase_14 AC 184 ms
131,300 KB
testcase_15 AC 190 ms
137,504 KB
testcase_16 AC 330 ms
189,792 KB
testcase_17 AC 218 ms
149,912 KB
testcase_18 AC 219 ms
150,712 KB
testcase_19 AC 224 ms
153,776 KB
testcase_20 AC 83 ms
81,784 KB
testcase_21 AC 128 ms
112,576 KB
testcase_22 AC 195 ms
131,396 KB
testcase_23 AC 51 ms
67,632 KB
testcase_24 AC 326 ms
198,304 KB
testcase_25 AC 331 ms
196,260 KB
testcase_26 AC 327 ms
194,820 KB
testcase_27 AC 334 ms
195,976 KB
testcase_28 AC 325 ms
194,344 KB
testcase_29 AC 82 ms
85,472 KB
testcase_30 AC 36 ms
52,200 KB
testcase_31 AC 49 ms
67,880 KB
testcase_32 AC 36 ms
52,448 KB
testcase_33 AC 37 ms
53,556 KB
testcase_34 AC 38 ms
52,072 KB
testcase_35 AC 35 ms
53,036 KB
testcase_36 AC 36 ms
53,044 KB
testcase_37 AC 37 ms
53,068 KB
testcase_38 AC 41 ms
53,160 KB
testcase_39 AC 36 ms
53,260 KB
testcase_40 AC 37 ms
54,172 KB
testcase_41 AC 37 ms
53,396 KB
testcase_42 AC 36 ms
52,572 KB
testcase_43 AC 36 ms
53,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #



mod=998244353
def sol1(A):
    a=A[:]
    n=len(a)
    a.sort()
    ans=1
    block=[(0,n-1)]
    for j in range(32,-1,-1):
        res=1
        new=[]
        for l,r in block:
            if (a[l]>>j)&1==(a[r]>>j)&1:
                new.append((l,r))
                continue
            mid=-1
            for i in range(l,r):
                if (a[i]>>j)&1<(a[i+1]>>j)&1:
                    mid=i
                    break
            res=2
            new.append((l,mid))
            new.append((mid+1,r))
        ans*=res
        block=new[:]
    return ans%mod

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