結果

問題 No.2061 XOR Sort
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2022-08-12 09:34:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 340 ms / 2,000 ms
コード長 590 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 198,724 KB
最終ジャッジ日時 2024-09-22 13:30:57
合計ジャッジ時間 6,760 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,756 KB
testcase_01 AC 37 ms
53,264 KB
testcase_02 AC 38 ms
53,576 KB
testcase_03 AC 38 ms
53,236 KB
testcase_04 AC 37 ms
53,016 KB
testcase_05 AC 38 ms
53,544 KB
testcase_06 AC 38 ms
53,560 KB
testcase_07 AC 38 ms
52,936 KB
testcase_08 AC 38 ms
52,484 KB
testcase_09 AC 38 ms
52,212 KB
testcase_10 AC 38 ms
52,444 KB
testcase_11 AC 38 ms
52,468 KB
testcase_12 AC 38 ms
53,512 KB
testcase_13 AC 39 ms
52,728 KB
testcase_14 AC 209 ms
139,076 KB
testcase_15 AC 183 ms
131,812 KB
testcase_16 AC 324 ms
182,464 KB
testcase_17 AC 231 ms
147,256 KB
testcase_18 AC 226 ms
145,540 KB
testcase_19 AC 226 ms
146,148 KB
testcase_20 AC 89 ms
82,464 KB
testcase_21 AC 131 ms
108,668 KB
testcase_22 AC 187 ms
131,504 KB
testcase_23 AC 56 ms
68,820 KB
testcase_24 AC 306 ms
183,828 KB
testcase_25 AC 321 ms
186,924 KB
testcase_26 AC 338 ms
198,720 KB
testcase_27 AC 340 ms
198,724 KB
testcase_28 AC 327 ms
183,240 KB
testcase_29 AC 90 ms
86,144 KB
testcase_30 AC 38 ms
53,892 KB
testcase_31 AC 58 ms
68,380 KB
testcase_32 AC 38 ms
52,088 KB
testcase_33 AC 38 ms
52,580 KB
testcase_34 AC 39 ms
53,624 KB
testcase_35 AC 39 ms
52,396 KB
testcase_36 AC 38 ms
52,572 KB
testcase_37 AC 37 ms
53,140 KB
testcase_38 AC 38 ms
52,980 KB
testcase_39 AC 38 ms
53,432 KB
testcase_40 AC 38 ms
52,772 KB
testcase_41 AC 37 ms
52,620 KB
testcase_42 AC 38 ms
52,492 KB
testcase_43 AC 37 ms
53,228 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