結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー H3PO4H3PO4
提出日時 2020-05-25 20:06:41
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 2,539 ms / 5,000 ms
コード長 211 bytes
コンパイル時間 814 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 265,892 KB
最終ジャッジ日時 2024-07-04 12:48:44
合計ジャッジ時間 54,700 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 463 ms
44,824 KB
testcase_01 AC 469 ms
45,412 KB
testcase_02 AC 468 ms
45,080 KB
testcase_03 AC 465 ms
45,084 KB
testcase_04 AC 479 ms
44,860 KB
testcase_05 AC 474 ms
44,820 KB
testcase_06 AC 484 ms
45,204 KB
testcase_07 AC 480 ms
44,824 KB
testcase_08 AC 1,874 ms
194,912 KB
testcase_09 AC 794 ms
71,500 KB
testcase_10 AC 1,576 ms
161,744 KB
testcase_11 AC 1,203 ms
127,184 KB
testcase_12 AC 2,186 ms
226,264 KB
testcase_13 AC 2,310 ms
235,904 KB
testcase_14 AC 1,503 ms
154,272 KB
testcase_15 AC 2,539 ms
259,696 KB
testcase_16 AC 2,136 ms
221,888 KB
testcase_17 AC 2,223 ms
236,364 KB
testcase_18 AC 475 ms
44,872 KB
testcase_19 AC 456 ms
45,084 KB
testcase_20 AC 1,826 ms
210,400 KB
testcase_21 AC 2,502 ms
265,892 KB
testcase_22 AC 2,464 ms
265,832 KB
testcase_23 AC 477 ms
44,828 KB
testcase_24 AC 471 ms
45,212 KB
testcase_25 AC 474 ms
44,684 KB
testcase_26 AC 473 ms
44,952 KB
testcase_27 AC 462 ms
45,192 KB
testcase_28 AC 1,569 ms
176,016 KB
testcase_29 AC 2,116 ms
232,316 KB
testcase_30 AC 1,864 ms
209,836 KB
testcase_31 AC 1,658 ms
186,928 KB
testcase_32 AC 2,004 ms
224,676 KB
testcase_33 AC 2,416 ms
259,160 KB
testcase_34 AC 2,288 ms
256,896 KB
testcase_35 AC 2,364 ms
264,204 KB
testcase_36 AC 2,360 ms
263,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


def tobit(x):
    x = int(x)
    return [((x >> i) & 1) for i in range(70)]


N = int(input())
A = np.array(list(map(tobit, input().split())))

x = np.linalg.matrix_rank(A)
print(pow(2, x))
0