結果

問題 No.946 箱箱箱
ユーザー PachicobuePachicobue
提出日時 2019-12-09 01:22:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 3,755 bytes
コンパイル時間 2,085 ms
コンパイル使用メモリ 206,820 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-31 01:04:16
合計ジャッジ時間 11,200 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 215 ms
4,376 KB
testcase_04 AC 234 ms
4,380 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 233 ms
4,380 KB
testcase_07 AC 201 ms
4,376 KB
testcase_08 AC 198 ms
4,376 KB
testcase_09 AC 11 ms
4,380 KB
testcase_10 AC 215 ms
4,376 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 12 ms
4,376 KB
testcase_13 AC 195 ms
4,376 KB
testcase_14 AC 203 ms
4,380 KB
testcase_15 AC 211 ms
4,380 KB
testcase_16 AC 215 ms
4,376 KB
testcase_17 AC 211 ms
4,376 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 2 ms
4,376 KB
testcase_21 AC 10 ms
4,380 KB
testcase_22 AC 208 ms
4,376 KB
testcase_23 AC 212 ms
4,376 KB
testcase_24 AC 10 ms
4,380 KB
testcase_25 AC 77 ms
4,376 KB
testcase_26 AC 214 ms
4,380 KB
testcase_27 AC 209 ms
4,376 KB
testcase_28 AC 216 ms
4,376 KB
testcase_29 AC 196 ms
4,376 KB
testcase_30 AC 212 ms
4,380 KB
testcase_31 AC 216 ms
4,376 KB
testcase_32 AC 203 ms
4,380 KB
testcase_33 AC 207 ms
4,380 KB
testcase_34 AC 194 ms
4,380 KB
testcase_35 AC 212 ms
4,380 KB
testcase_36 AC 233 ms
4,376 KB
testcase_37 AC 233 ms
4,376 KB
testcase_38 AC 77 ms
4,380 KB
testcase_39 AC 206 ms
4,376 KB
testcase_40 WA -
testcase_41 AC 213 ms
4,376 KB
testcase_42 AC 208 ms
4,376 KB
testcase_43 AC 233 ms
4,376 KB
testcase_44 AC 78 ms
4,376 KB
testcase_45 AC 232 ms
4,376 KB
testcase_46 AC 234 ms
4,376 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 1 ms
4,376 KB
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 1 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
// created [2019/12/09] 00:05:32
#pragma GCC diagnostic ignored "-Wsign-compare"
#pragma GCC diagnostic ignored "-Wsign-conversion"

using i32 = int32_t;
using i64 = int64_t;
using u32 = uint32_t;
using u64 = uint64_t;
using uint = unsigned int;
using usize = std::size_t;
using ll = long long;
using ull = unsigned long long;
using ld = long double;
template<typename T> constexpr T popcount(const T u) { return u ? static_cast<T>(__builtin_popcountll(static_cast<u64>(u))) : static_cast<T>(0); }
template<typename T> constexpr T log2p1(const T u) { return u ? static_cast<T>(64 - __builtin_clzll(static_cast<u64>(u))) : static_cast<T>(0); }
template<typename T> constexpr T msbp1(const T u) { return log2p1(u); }
template<typename T> constexpr T lsbp1(const T u) { return __builtin_ffsll(u); }
template<typename T> constexpr T clog(const T u) { return u ? log2p1(u - 1) : static_cast<T>(u); }
template<typename T> constexpr bool ispow2(const T u) { return u and (static_cast<u64>(u) & static_cast<u64>(u - 1)) == 0; }
template<typename T> constexpr T ceil2(const T u) { return static_cast<T>(1) << clog(u); }
template<typename T> constexpr T floor2(const T u) { return u == 0 ? static_cast<T>(0) : static_cast<T>(1) << (log2p1(u) - 1); }
template<typename T> constexpr bool btest(const T mask, const usize ind) { return static_cast<bool>((static_cast<u64>(mask) >> ind) & static_cast<u64>(1)); }
template<typename T> void bset(T& mask, const usize ind) { mask |= (static_cast<T>(1) << ind); }
template<typename T> void breset(T& mask, const usize ind) { mask &= ~(static_cast<T>(1) << ind); }
template<typename T> void bflip(T& mask, const usize ind) { mask ^= (static_cast<T>(1) << ind); }
template<typename T> void bset(T& mask, const usize ind, const bool b) { (b ? bset(mask, ind) : breset(mask, ind)); }
template<typename T> constexpr T bcut(const T mask, const usize ind) { return ind == 0 ? static_cast<T>(0) : static_cast<T>((static_cast<u64>(mask) << (64 - ind)) >> (64 - ind)); }
template<typename T> bool chmin(T& a, const T& b) { return (a > b ? a = b, true : false); }
template<typename T> bool chmax(T& a, const T& b) { return (a < b ? a = b, true : false); }
constexpr unsigned int mod                  = 1000000007;
template<typename T> constexpr T inf_v      = std::numeric_limits<T>::max() / 4;
template<typename Real> constexpr Real pi_v = Real{3.141592653589793238462643383279502884};

template<typename T>
T read()
{
    T v;
    return std::cin >> v, v;
}
template<typename T, typename... Args>
auto read(const usize size, Args... args)
{
    std::vector<decltype(read<T>(args...))> ans(size);
    for (usize i = 0; i < size; i++) { ans[i] = read<T>(args...); }
    return ans;
}
template<typename... Types>
auto reads() { return std::tuple<std::decay_t<Types>...>{read<Types>()...}; }
#    define SHOW(...) static_cast<void>(0)
constexpr ull TEN(const usize n) { return n == 0 ? 1ULL : TEN(n - 1) * 10ULL; }

template<typename T>
std::vector<T> make_v(const usize size, const T v) { return std::vector<T>(size, v); }
template<typename... Args>
auto make_v(const usize size, Args... args) { return std::vector<decltype(make_v(args...))>(size, make_v(args...)); }
int main()
{
    const auto N = read<int>();
    const auto A = read<ll>(N);
    std::vector<ll> gs(N, 0);
    for (int i = N - 1; i >= 0; i--) {
        std::set<ll> st;
        ll x = 0;
        for (int j = i; j < N; j++) {
            x ^= A[j];
            st.insert(x ^ gs[j]);
        }
        for (ll g = 0;; g++) {
            if (st.count(g) == 0) {
                gs[i] = g;
                break;
            }
        }
    }
    SHOW(gs);
    std::cout << (gs[0] != 0 ? "Takahashi" : "Takanashi") << std::endl;
    return 0;
}
0