using System; using System.Collections.Generic; using System.Linq; using System.IO; using SB = System.Text.StringBuilder; //using System.Threading.Tasks; //using System.Text.RegularExpressions; //using System.Globalization; //using System.Diagnostics; using static System.Console; using System.Numerics; using static System.Math; using pair = Pair; class Program { static void Main() { //SetOut(new StreamWriter(OpenStandardOutput()) { AutoFlush = false }); new Program().solve(); Out.Flush(); } readonly Scanner cin = new Scanner(); readonly int[] dd = { 0, 1, 0, -1, 0 }; //→↓←↑ readonly int mod = 1000000007; readonly int dom = 998244353; bool chmax(ref T a, T b) where T : IComparable { if (a.CompareTo(b) < 0) { a = b; return true; } return false; } bool chmin(ref T a, T b) where T : IComparable { if (b.CompareTo(a) < 0) { a = b; return true; } return false; } long calc(long L, long[] A) { var S = Convert.ToString(L, 2); int N = S.Length; long ret = 0; WriteLine(S); //iビット目に初めて小さくなる (S[i]==1) for (int i = 0; i < N; i++) { if (S[i] == '0') continue; //自由なビット個数 int M = N - (i + 1); //ベースとなるX var X = (L ^ (1L << M)) >> M << M; var C = new long[A.Length]; Array.Copy(A, C, A.Length); bool flag = true; for (int j = 0; j < C.Length; j++) { C[j] ^= X; if (j > 0 && (C[j - 1] >> M) > (C[j] >> M)) { flag = false; break; } } if (!flag) { continue; } //jbit目を決める var ans = new int[N]; //0 0通り,1 1とする 2 0とする 3 どちらでも for (int j = 0; j < N; j++) { if (j <= i) ans[j] = 1; else ans[j] = 3; } dfs(0, A.Length, ans, C, i + 1); long sum = 1; for (int j = 0; j < N; j++) { if (ans[j] == 3) { sum *= 2; } else if (ans[j] == 0) { sum = 0; break; } } ret += sum; //WriteLine(ret + " " + i); } //x=Lのときも試す var D = new long[A.Length]; Array.Copy(A, D, A.Length); int add = 1; for (int j = 0; j < D.Length; j++) { D[j] ^= L; if (j > 0 && D[j - 1] >= D[j]) { add = 0; break; } } ret += add; return ret; } void dfs(int s, int t, int[] ans, long[] C, int depth) { if (depth == ans.Length && t - s >= 2) { ans[0] = 0; } if (t - s <= 1 || depth == ans.Length || ans[depth] == 0) return; int K = ans.Length - (depth + 1); int before = -1; int bad = -1; var L = new List(); for (int i = s; i < t; i++) { int x = (int)(C[i] >> K & 1); if (x != before) { L.Add(x); before = x; bad = i; } } if (L.Count > 2) { ans[depth] = 0; return; } if (L.Count == 1) { dfs(s, t, ans, C, depth + 1); } else if (L[0] == 0) { if (ans[depth] == 1) { ans[depth] = 0; return; } ans[depth] = 2; dfs(s, bad, ans, C, depth + 1); dfs(bad, t, ans, C, depth + 1); } else if (L[0] == 1) { if (ans[depth] == 2) { ans[depth] = 0; return; } ans[depth] = 1; dfs(s, bad, ans, C, depth + 1); dfs(bad, t, ans, C, depth + 1); } } void solve() { int N = cin.nextint; var L = cin.nextlong; var R = cin.nextlong; var A = cin.scanlong; var p = calc(R, A); var q = 0L; if (L > 0) { q = calc(L - 1, A); } WriteLine(p + " " + q); WriteLine(p - q); } } static class Ex { public static void join(this IEnumerable values, string sep = " ") => WriteLine(string.Join(sep, values)); public static string concat(this IEnumerable values) => string.Concat(values); public static string reverse(this string s) { var t = s.ToCharArray(); Array.Reverse(t); return t.concat(); } public static int lower_bound(this IList arr, T val) where T : IComparable { int low = 0, high = arr.Count; int mid; while (low < high) { mid = ((high - low) >> 1) + low; if (arr[mid].CompareTo(val) < 0) low = mid + 1; else high = mid; } return low; } public static int upper_bound(this IList arr, T val) where T : IComparable { int low = 0, high = arr.Count; int mid; while (low < high) { mid = ((high - low) >> 1) + low; if (arr[mid].CompareTo(val) <= 0) low = mid + 1; else high = mid; } return low; } } class Pair : IComparable> where T : IComparable where U : IComparable { public T f; public U s; public Pair(T f, U s) { this.f = f; this.s = s; } public int CompareTo(Pair a) => f.CompareTo(a.f) != 0 ? f.CompareTo(a.f) : s.CompareTo(a.s); public override string ToString() => $"{f} {s}"; } class Scanner { string[] s; int i; readonly char[] cs = new char[] { ' ' }; public Scanner() { s = new string[0]; i = 0; } public string[] scan => ReadLine().Split(); public int[] scanint => Array.ConvertAll(scan, int.Parse); public long[] scanlong => Array.ConvertAll(scan, long.Parse); public double[] scandouble => Array.ConvertAll(scan, double.Parse); public string next { get { if (i < s.Length) return s[i++]; string st = ReadLine(); while (st == "") st = ReadLine(); s = st.Split(cs, StringSplitOptions.RemoveEmptyEntries); i = 0; return next; } } public int nextint => int.Parse(next); public long nextlong => long.Parse(next); public double nextdouble => double.Parse(next); }