結果

問題 No.2061 XOR Sort
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2022-08-21 23:04:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 341 ms / 2,000 ms
コード長 587 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 199,240 KB
最終ジャッジ日時 2024-10-10 06:25:49
合計ジャッジ時間 6,389 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,512 KB
testcase_01 AC 37 ms
52,636 KB
testcase_02 AC 37 ms
51,880 KB
testcase_03 AC 37 ms
53,720 KB
testcase_04 AC 37 ms
53,196 KB
testcase_05 AC 42 ms
52,600 KB
testcase_06 AC 37 ms
52,704 KB
testcase_07 AC 38 ms
52,336 KB
testcase_08 AC 38 ms
53,500 KB
testcase_09 AC 37 ms
52,204 KB
testcase_10 AC 37 ms
52,632 KB
testcase_11 AC 39 ms
53,084 KB
testcase_12 AC 38 ms
52,504 KB
testcase_13 AC 38 ms
52,060 KB
testcase_14 AC 206 ms
138,756 KB
testcase_15 AC 183 ms
131,400 KB
testcase_16 AC 319 ms
182,608 KB
testcase_17 AC 222 ms
147,000 KB
testcase_18 AC 223 ms
146,068 KB
testcase_19 AC 227 ms
145,780 KB
testcase_20 AC 86 ms
81,992 KB
testcase_21 AC 131 ms
108,668 KB
testcase_22 AC 182 ms
131,376 KB
testcase_23 AC 54 ms
68,380 KB
testcase_24 AC 310 ms
183,484 KB
testcase_25 AC 318 ms
186,440 KB
testcase_26 AC 339 ms
198,464 KB
testcase_27 AC 341 ms
199,240 KB
testcase_28 AC 322 ms
182,980 KB
testcase_29 AC 88 ms
85,952 KB
testcase_30 AC 37 ms
52,632 KB
testcase_31 AC 56 ms
68,688 KB
testcase_32 AC 38 ms
52,132 KB
testcase_33 AC 36 ms
53,028 KB
testcase_34 AC 38 ms
52,952 KB
testcase_35 AC 38 ms
52,852 KB
testcase_36 AC 36 ms
52,956 KB
testcase_37 AC 37 ms
52,644 KB
testcase_38 AC 38 ms
52,684 KB
testcase_39 AC 37 ms
51,816 KB
testcase_40 AC 42 ms
53,424 KB
testcase_41 AC 37 ms
53,808 KB
testcase_42 AC 38 ms
52,636 KB
testcase_43 AC 37 ms
53,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=998244353
n=int(input())
a=list(map(int,input().split()))
a.sort() #ソートしても答えは変わらない。
G=[(0,n-1)]
ans=1
for j in range(29,-1,-1):
    res=1
    newG=[]
    for l,r in G:
        if (a[l]>>j)&1==(a[r]>>j)&1:
            newG.append((l,r))
            continue
        res=2 #広義単調増加、減少が区別できる。
        mid=-1
        for i in range(l,r):
            if (a[i]>>j)&1<(a[i+1]>>j)&1:
                mid=i
                break
        newG.append((l,mid))
        newG.append((mid+1,r))
    ans*=res
    G=newG[:]
print(ans%mod)
0