結果

問題 No.2061 XOR Sort
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2022-08-12 08:53:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 287 bytes
コンパイル時間 399 ms
コンパイル使用メモリ 81,724 KB
実行使用メモリ 101,404 KB
最終ジャッジ日時 2023-10-23 19:27:38
合計ジャッジ時間 4,447 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,284 KB
testcase_01 AC 35 ms
53,284 KB
testcase_02 AC 35 ms
53,284 KB
testcase_03 AC 41 ms
59,624 KB
testcase_04 AC 39 ms
53,284 KB
testcase_05 AC 39 ms
56,980 KB
testcase_06 AC 38 ms
56,980 KB
testcase_07 AC 39 ms
56,980 KB
testcase_08 AC 36 ms
53,284 KB
testcase_09 AC 38 ms
56,980 KB
testcase_10 AC 36 ms
53,284 KB
testcase_11 AC 40 ms
56,980 KB
testcase_12 AC 38 ms
56,980 KB
testcase_13 AC 37 ms
53,284 KB
testcase_14 AC 87 ms
83,852 KB
testcase_15 AC 86 ms
83,728 KB
testcase_16 AC 148 ms
101,172 KB
testcase_17 AC 100 ms
90,904 KB
testcase_18 AC 102 ms
91,264 KB
testcase_19 AC 100 ms
90,904 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 88 ms
83,832 KB
testcase_23 WA -
testcase_24 AC 151 ms
101,404 KB
testcase_25 AC 150 ms
101,316 KB
testcase_26 AC 149 ms
101,316 KB
testcase_27 AC 150 ms
101,316 KB
testcase_28 AC 149 ms
101,316 KB
testcase_29 AC 70 ms
75,208 KB
testcase_30 AC 37 ms
53,284 KB
testcase_31 AC 43 ms
61,536 KB
testcase_32 AC 36 ms
53,284 KB
testcase_33 AC 37 ms
53,284 KB
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 -
権限があれば一括ダウンロードができます

ソースコード

diff #



mod=998244353
def fake1(A):
    a=A[:]
    n=len(a)
    a.sort()
    ans=1
    for j in range(32,-1,-1):
        cnt=[0,0]
        for i in range(n):cnt[(a[i]>>j)&1]+=1
        if min(cnt)>=1:ans*=2
    return ans%mod


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