結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー MamonboMamonbo
提出日時 2015-08-20 18:41:27
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 59 ms / 5,000 ms
コード長 498 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-06-29 02:40:12
合計ジャッジ時間 1,445 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 24 ms
10,752 KB
testcase_07 AC 53 ms
11,264 KB
testcase_08 AC 54 ms
11,264 KB
testcase_09 AC 45 ms
11,136 KB
testcase_10 AC 48 ms
11,136 KB
testcase_11 AC 54 ms
11,264 KB
testcase_12 AC 26 ms
10,752 KB
testcase_13 AC 26 ms
10,752 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 59 ms
11,264 KB
testcase_16 AC 25 ms
10,752 KB
testcase_17 AC 31 ms
10,880 KB
testcase_18 AC 53 ms
11,264 KB
testcase_19 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding=UTF-8
#ビット毎の掃き出し法でうまくいくのでは(伝わっているかな)

N=int(input())
mojir=input()
hyo=mojir.split(' ')

numhyo=[int(mono) for mono in hyo]


hon=0
while True:
    wadai=max(numhyo)
    if wadai==0:
        break
    #掃き出す 排他的論理和を掛けた方とじゃない方の小さい方をとる
    #という不届き者
    hon=hon+1
    tmp=[]
    for mono in numhyo:
        tmp.append(min(mono,mono^wadai))
    numhyo=tmp
print(2**hon)
0