結果

問題 No.2061 XOR Sort
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2022-08-12 08:53:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 287 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 102,224 KB
最終ジャッジ日時 2024-09-22 13:11:19
合計ジャッジ時間 4,479 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,620 KB
testcase_01 AC 37 ms
52,520 KB
testcase_02 AC 37 ms
53,584 KB
testcase_03 AC 42 ms
60,172 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 40 ms
58,328 KB
testcase_06 AC 41 ms
58,800 KB
testcase_07 AC 41 ms
59,120 KB
testcase_08 AC 38 ms
52,684 KB
testcase_09 AC 40 ms
57,944 KB
testcase_10 AC 37 ms
53,280 KB
testcase_11 AC 40 ms
58,316 KB
testcase_12 AC 40 ms
57,816 KB
testcase_13 AC 37 ms
52,212 KB
testcase_14 AC 86 ms
85,716 KB
testcase_15 AC 86 ms
84,644 KB
testcase_16 AC 145 ms
101,996 KB
testcase_17 AC 102 ms
91,796 KB
testcase_18 AC 102 ms
92,356 KB
testcase_19 AC 101 ms
91,356 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 88 ms
85,492 KB
testcase_23 WA -
testcase_24 AC 147 ms
102,008 KB
testcase_25 AC 146 ms
102,224 KB
testcase_26 AC 148 ms
102,136 KB
testcase_27 AC 147 ms
102,020 KB
testcase_28 AC 148 ms
102,108 KB
testcase_29 AC 70 ms
74,468 KB
testcase_30 AC 37 ms
53,624 KB
testcase_31 AC 43 ms
61,272 KB
testcase_32 AC 38 ms
53,576 KB
testcase_33 AC 37 ms
53,140 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