結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー pluto77pluto77
提出日時 2018-01-03 15:31:52
言語 Python2
(2.7.18)
結果
AC  
実行時間 1,556 ms / 5,000 ms
コード長 221 bytes
コンパイル時間 519 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 16,584 KB
最終ジャッジ日時 2024-07-04 12:20:51
合計ジャッジ時間 27,387 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,016 KB
testcase_01 AC 11 ms
6,272 KB
testcase_02 AC 11 ms
6,144 KB
testcase_03 AC 11 ms
6,144 KB
testcase_04 AC 11 ms
6,144 KB
testcase_05 AC 11 ms
6,144 KB
testcase_06 AC 11 ms
6,272 KB
testcase_07 AC 12 ms
6,272 KB
testcase_08 AC 1,104 ms
13,608 KB
testcase_09 AC 234 ms
7,700 KB
testcase_10 AC 858 ms
11,636 KB
testcase_11 AC 610 ms
10,160 KB
testcase_12 AC 1,286 ms
14,696 KB
testcase_13 AC 1,390 ms
15,520 KB
testcase_14 AC 795 ms
11,548 KB
testcase_15 AC 1,513 ms
16,216 KB
testcase_16 AC 1,249 ms
14,296 KB
testcase_17 AC 1,358 ms
15,008 KB
testcase_18 AC 12 ms
6,144 KB
testcase_19 AC 11 ms
6,016 KB
testcase_20 AC 80 ms
7,932 KB
testcase_21 AC 1,556 ms
16,584 KB
testcase_22 AC 1,556 ms
16,456 KB
testcase_23 AC 11 ms
6,016 KB
testcase_24 AC 11 ms
6,144 KB
testcase_25 AC 11 ms
6,144 KB
testcase_26 AC 11 ms
6,272 KB
testcase_27 AC 12 ms
6,016 KB
testcase_28 AC 924 ms
12,340 KB
testcase_29 AC 1,288 ms
15,144 KB
testcase_30 AC 1,127 ms
14,044 KB
testcase_31 AC 952 ms
12,944 KB
testcase_32 AC 1,194 ms
14,608 KB
testcase_33 AC 1,524 ms
16,120 KB
testcase_34 AC 1,499 ms
15,920 KB
testcase_35 AC 1,547 ms
16,396 KB
testcase_36 AC 1,537 ms
16,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki_184

n=int(raw_input())
a=map(int,raw_input().split())
res=0
for i in xrange(n):
 if a[i]:
  res+=1
  x=0
  while (2**(x+1))<=a[i]:
   x+=1
  for y in xrange(i+1,n):
   if a[y] & (2**x):
    a[y]^=a[i]
print 2**res
0