結果
問題 | No.1304 あなたは基本が何か知っていますか?私は知っています. |
ユーザー | masutech16 |
提出日時 | 2020-12-01 21:27:06 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,619 bytes |
コンパイル時間 | 2,205 ms |
コンパイル使用メモリ | 203,252 KB |
実行使用メモリ | 13,760 KB |
最終ジャッジ日時 | 2024-06-12 11:42:09 |
合計ジャッジ時間 | 5,940 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,760 KB |
testcase_01 | AC | 2 ms
6,948 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
04_evil_A_01 | -- | - |
04_evil_A_02 | -- | - |
04_evil_A_03 | -- | - |
04_evil_A_04 | -- | - |
04_evil_A_05 | -- | - |
04_evil_A_06 | -- | - |
04_evil_A_07 | -- | - |
04_evil_A_08 | -- | - |
04_evil_A_09 | -- | - |
04_evil_A_10 | -- | - |
05_evil_B_01 | -- | - |
05_evil_B_02 | -- | - |
05_evil_B_03 | -- | - |
05_evil_B_04 | -- | - |
05_evil_B_05 | -- | - |
05_evil_B_06 | -- | - |
05_evil_B_07 | -- | - |
05_evil_B_08 | -- | - |
05_evil_B_09 | -- | - |
05_evil_B_10 | -- | - |
06_evil_C_01 | -- | - |
06_evil_C_02 | -- | - |
06_evil_C_03 | -- | - |
06_evil_C_04 | -- | - |
06_evil_C_05 | -- | - |
06_evil_C_06 | -- | - |
06_evil_C_07 | -- | - |
06_evil_C_08 | -- | - |
06_evil_C_09 | -- | - |
06_evil_C_10 | -- | - |
ソースコード
#line 1 "/workspaces/compro/lib/template.hpp" #line 1 "/workspaces/compro/lib/io/vector.hpp" #include <iostream> #include <vector> #ifndef IO_VECTOR #define IO_VECTOR template <class T> std::ostream &operator<<(std::ostream &out, const std::vector<T> &v) { int size = v.size(); for (int i = 0; i < size; i++) { std::cout << v[i]; if (i != size - 1) std::cout << " "; } return out; } template <class T> std::istream &operator>>(std::istream &in, std::vector<T> &v) { for (auto &el : v) { std::cin >> el; } return in; } #endif #line 4 "/workspaces/compro/lib/template.hpp" #include <bits/stdc++.h> #define REP(i, n) for (int i = 0; i < n; i++) #define FOR(i, m, n) for (int i = m; i < n; i++) #define ALL(v) (v).begin(), (v).end() #define coutd(n) cout << fixed << setprecision(n) #define ll long long int #define vl vector<ll> #define vi vector<int> #define MM << " " << using namespace std; template <class T> void say(bool val, T yes, T no) { cout << (val ? yes : no) << "\n"; } void say(bool val, string yes = "Yes", string no = "No") { say<string>(val, yes, no); } template <class T> void chmin(T &a, T b) { if (a > b) a = b; } template <class T> void chmax(T &a, T b) { if (a < b) a = b; } // C++ 17に完全移行したら消す // 最大公約数を求める template <class T> T gcd(T n, T m) { return n ? gcd(m % n, n) : m; } // 最小公倍数を求める template <class T> T lcm(T n, T m) { T g = gcd(n, m); return (n / g) * m; } // 重複を消す。計算量はO(NlogN) template <class T> void unique(std::vector<T> &v) { std::sort(v.begin(), v.end()); v.erase(std::unique(v.begin(), v.end()), v.end()); } #line 2 "main.cpp" constexpr long long MOD = 998244353; long long solve(long long N, int K, long long X, long long Y, const std::vector<long long> &A) { ll ans = 0; ll loop = 1; REP(i, N) { loop *= K; } REP(i, loop) { ll tmp = i; int x = 0; int prev = -1; bool ok = true; REP(i, N) { int idx = tmp % K; if (prev == A[idx]) { ok = false; break; } prev = A[idx]; x = x ^ A[idx]; tmp /= K; } if (ok && X <= x && x <= Y) { ans++; } } return ans; } // generated by online-judge-template-generator v4.7.1 (https://github.com/online-judge-tools/template-generator) int main() { int N; long long K; long long X, Y; std::cin >> N >> K; std::vector<long long> A(K); std::cin >> X >> Y; for (int i = 0; i < K; ++i) { std::cin >> A[i]; } auto ans = solve(N, K, X, Y, A); std::cout << ans << std::endl; return 0; }