結果

問題 No.2061 XOR Sort
ユーザー ニックネームニックネーム
提出日時 2022-08-26 23:22:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 358 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 272,836 KB
最終ジャッジ日時 2024-10-14 00:07:12
合計ジャッジ時間 9,323 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 38 ms
51,584 KB
testcase_02 WA -
testcase_03 AC 43 ms
58,496 KB
testcase_04 WA -
testcase_05 AC 44 ms
59,008 KB
testcase_06 AC 46 ms
58,496 KB
testcase_07 AC 45 ms
59,136 KB
testcase_08 AC 40 ms
51,840 KB
testcase_09 AC 45 ms
58,368 KB
testcase_10 AC 39 ms
51,840 KB
testcase_11 AC 40 ms
52,608 KB
testcase_12 AC 44 ms
58,624 KB
testcase_13 WA -
testcase_14 AC 338 ms
197,412 KB
testcase_15 AC 330 ms
196,628 KB
testcase_16 AC 586 ms
271,408 KB
testcase_17 AC 386 ms
210,400 KB
testcase_18 AC 391 ms
211,724 KB
testcase_19 AC 387 ms
210,488 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 333 ms
197,000 KB
testcase_23 WA -
testcase_24 AC 590 ms
272,444 KB
testcase_25 AC 588 ms
272,772 KB
testcase_26 AC 588 ms
272,712 KB
testcase_27 AC 587 ms
272,444 KB
testcase_28 AC 585 ms
272,836 KB
testcase_29 AC 227 ms
152,828 KB
testcase_30 AC 39 ms
51,968 KB
testcase_31 AC 76 ms
77,372 KB
testcase_32 AC 38 ms
51,584 KB
testcase_33 AC 39 ms
51,840 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 #

n = int(input())
a = list(map(int, input().split()))
s = []
for i in range(30):
    b = []
    for v in a:
        if v&2**i: b.append(1)
        else: b.append(0)
    b = tuple(b)
    for c in s:
        f = True
        for u, v in zip(b, c):
            if u > v: f = False; break
        if f: break
    else: s.append(b)
print(pow(2, len(s), 998244353))
0