結果

問題 No.803 Very Limited Xor Subset
ユーザー convexineqconvexineq
提出日時 2021-03-25 05:10:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 383 bytes
コンパイル時間 410 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-05-05 07:39:51
合計ジャッジ時間 4,095 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,096 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 36 ms
51,712 KB
testcase_03 AC 36 ms
51,840 KB
testcase_04 AC 35 ms
52,224 KB
testcase_05 AC 36 ms
52,224 KB
testcase_06 AC 36 ms
52,224 KB
testcase_07 AC 34 ms
52,224 KB
testcase_08 AC 34 ms
51,712 KB
testcase_09 AC 35 ms
51,840 KB
testcase_10 AC 37 ms
52,224 KB
testcase_11 AC 35 ms
52,224 KB
testcase_12 AC 35 ms
52,224 KB
testcase_13 AC 37 ms
52,224 KB
testcase_14 AC 60 ms
73,088 KB
testcase_15 AC 62 ms
74,240 KB
testcase_16 AC 60 ms
72,576 KB
testcase_17 AC 60 ms
72,448 KB
testcase_18 AC 60 ms
72,704 KB
testcase_19 AC 60 ms
71,936 KB
testcase_20 AC 60 ms
73,856 KB
testcase_21 AC 60 ms
73,344 KB
testcase_22 AC 61 ms
72,704 KB
testcase_23 AC 65 ms
76,288 KB
testcase_24 AC 65 ms
76,432 KB
testcase_25 AC 65 ms
76,416 KB
testcase_26 AC 61 ms
74,752 KB
testcase_27 AC 68 ms
76,288 KB
testcase_28 AC 60 ms
74,624 KB
testcase_29 AC 60 ms
73,984 KB
testcase_30 AC 59 ms
73,984 KB
testcase_31 AC 66 ms
76,544 KB
testcase_32 AC 62 ms
73,984 KB
testcase_33 AC 59 ms
74,496 KB
testcase_34 AC 36 ms
51,968 KB
testcase_35 AC 60 ms
73,728 KB
testcase_36 AC 51 ms
65,024 KB
testcase_37 AC 53 ms
66,560 KB
testcase_38 AC 44 ms
60,032 KB
testcase_39 AC 44 ms
60,672 KB
testcase_40 AC 61 ms
74,368 KB
testcase_41 AC 60 ms
73,984 KB
testcase_42 AC 59 ms
73,780 KB
testcase_43 AC 60 ms
73,088 KB
testcase_44 AC 35 ms
52,480 KB
testcase_45 AC 36 ms
51,968 KB
testcase_46 AC 35 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,x = map(int,input().split())
*a, = [int(i)<<m for i in input().split()]
x <<= m
for k in range(m):
    v,L,R = map(int,input().split())
    x |= v<<k
    for i in range(L-1,R):
        a[i] |= 1<<k
basis = []
for e in a:
    for b in basis:
        if e > e^b: e ^= b
    if e: basis.append(e)
for b in basis:
    if x > x^b: x ^= b
print(0 if x else pow(2,n-len(basis),10**9+7))
0