結果

問題 No.1926 Sequence of Remainders
ユーザー CyanmondCyanmond
提出日時 2022-05-06 21:26:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 252 ms / 2,000 ms
コード長 9,906 bytes
コンパイル時間 2,056 ms
コンパイル使用メモリ 202,332 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-20 02:13:55
合計ジャッジ時間 13,498 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 180 ms
4,376 KB
testcase_02 AC 178 ms
4,380 KB
testcase_03 AC 182 ms
4,376 KB
testcase_04 AC 183 ms
4,380 KB
testcase_05 AC 185 ms
4,384 KB
testcase_06 AC 246 ms
4,380 KB
testcase_07 AC 250 ms
4,376 KB
testcase_08 AC 243 ms
4,380 KB
testcase_09 AC 244 ms
4,380 KB
testcase_10 AC 248 ms
4,376 KB
testcase_11 AC 243 ms
4,380 KB
testcase_12 AC 244 ms
4,380 KB
testcase_13 AC 244 ms
4,380 KB
testcase_14 AC 245 ms
4,380 KB
testcase_15 AC 245 ms
4,376 KB
testcase_16 AC 245 ms
4,376 KB
testcase_17 AC 245 ms
4,376 KB
testcase_18 AC 243 ms
4,380 KB
testcase_19 AC 246 ms
4,380 KB
testcase_20 AC 247 ms
4,376 KB
testcase_21 AC 243 ms
4,376 KB
testcase_22 AC 246 ms
4,380 KB
testcase_23 AC 246 ms
4,380 KB
testcase_24 AC 245 ms
4,384 KB
testcase_25 AC 243 ms
4,376 KB
testcase_26 AC 250 ms
4,376 KB
testcase_27 AC 247 ms
4,376 KB
testcase_28 AC 247 ms
4,380 KB
testcase_29 AC 246 ms
4,376 KB
testcase_30 AC 248 ms
4,380 KB
testcase_31 AC 246 ms
4,380 KB
testcase_32 AC 248 ms
4,380 KB
testcase_33 AC 248 ms
4,380 KB
testcase_34 AC 252 ms
4,376 KB
testcase_35 AC 248 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#line 2 "ProCon/Library/template/util.hpp"
#include <algorithm>
#include <array>
#include <cassert>
#include <cstdint>
#include <iostream>
#include <iterator>
#include <limits>
#include <numeric>
#include <queue>
#include <random>
#include <tuple>
#include <type_traits>
#include <vector>

using i8 = std::int8_t;
using u8 = std::uint8_t;
using i16 = std::int16_t;
using i32 = std::int32_t;
using i64 = std::int64_t;
using u16 = std::uint16_t;
using u32 = std::uint32_t;
using u64 = std::uint64_t;

constexpr i8 operator""_i8(unsigned long long n) noexcept { return static_cast<i8>(n); }
constexpr i16 operator""_i16(unsigned long long n) noexcept { return static_cast<i16>(n); }
constexpr i32 operator""_i32(unsigned long long n) noexcept { return static_cast<i32>(n); }
constexpr i64 operator""_i64(unsigned long long n) noexcept { return static_cast<i64>(n); }
constexpr u8 operator""_u8(unsigned long long n) noexcept { return static_cast<u8>(n); }
constexpr u16 operator""_u16(unsigned long long n) noexcept { return static_cast<u16>(n); }
constexpr u32 operator""_u32(unsigned long long n) noexcept { return static_cast<u32>(n); }
constexpr u64 operator""_u64(unsigned long long n) noexcept { return static_cast<u64>(n); }

constexpr char eoln = '\n';

template <typename T, T Div = 2> constexpr T infty = std::numeric_limits<T>::max() / Div - 2;
template <class T> using RevPriorityQueue = std::priority_queue<T, std::vector<T>, std::greater<T>>;

constexpr std::array<std::pair<int, int>, 4> dxy4 = {{{1, 0}, {0, 1}, {-1, 0}, {0, -1}}};

constexpr std::array<i64, 6> infty_list = {infty<short>,  infty<int>, infty<i64>,
                                           infty<i64, 3>, infty<u32>, infty<u64>};
template <typename T> bool is_infty(const T v) {
    if (v > 0 and static_cast<u64>(v) > infty<u64>) return false;
    for (const auto e : infty_list) {
        if (e == static_cast<i64>(v)) return true;
    }
    return false;
}

class Range {
    struct Iterator {
        int itr;
        constexpr Iterator(const int pos) noexcept : itr(pos) {}
        constexpr void operator++() noexcept { ++itr; }
        constexpr bool operator!=(const Iterator &other) const noexcept { return itr != other.itr; }
        constexpr int operator*() const noexcept { return itr; }
    };
    const Iterator first, last;

  public:
    explicit constexpr Range(const int f, const int l) noexcept : first(f), last(std::max(f, l)) {}
    constexpr Iterator begin() const noexcept { return first; }
    constexpr Iterator end() const noexcept { return last; }
};

class ReversedRange {
    struct Iterator {
        int itr;
        constexpr Iterator(const int pos) noexcept : itr(pos) {}
        constexpr void operator++() noexcept { --itr; }
        constexpr bool operator!=(const Iterator &other) const noexcept { return itr != other.itr; }
        constexpr int operator*() const noexcept { return itr; }
    };
    const Iterator first, last;

  public:
    explicit constexpr ReversedRange(const int f, const int l) noexcept
        : first(l - 1), last(std::min(f, l) - 1) {}
    constexpr Iterator begin() const noexcept { return first; }
    constexpr Iterator end() const noexcept { return last; }
};

#define SIKICM_REP1(i, r) for (const int i : Range(0, r))
#define SIKICM_REP2(i, l, r) for (int i : Range(l, r))
#define SIKICM_RVP1(i, r) for (const int i : ReversedRange(0, r))
#define SIKICM_RVP2(i, l, r) for (int i : ReversedRange(l, r))
#define SIKICM_SELECT2(a, b, c, name, ...) name
#define REP(...) SIKICM_SELECT2(__VA_ARGS__, SIKICM_REP2, SIKICM_REP1)(__VA_ARGS__)
#define RVP(...) SIKICM_SELECT2(__VA_ARGS__, SIKICM_RVP2, SIKICM_RVP1)(__VA_ARGS__)
#define HRL(n) for ([[maybe_unused]] const int loop_counter : Range(0, n))

template <class Container> constexpr int len(const Container &c) {
    return static_cast<int>(std::size(c));
}

template <typename T> constexpr bool chmin(T &v, const T a) {
    if (v > a) {
        v = a;
        return true;
    }
    return false;
}

template <typename T> constexpr bool chmax(T &v, const T a) {
    if (v < a) {
        v = a;
        return true;
    }
    return false;
}

template <typename T> constexpr T ceil_div(const T x, const T y) {
    assert(y != 0);
    assert(x > 0 and y > 0);
    return (x + y - 1) / y;
}

template <class Container, class T> constexpr int lwb(const Container &c, const T &val) {
    return static_cast<int>(std::distance(c.cbegin(), std::lower_bound(c.cbegin(), c.cend(), val)));
}

template <class Container, class T> constexpr int upb(const Container &c, const T &val) {
    return static_cast<int>(std::distance(c.cbegin(), std::upper_bound(c.cbegin(), c.cend(), val)));
}

template <class Container, class F> constexpr int lmp(const Container &c, const F &f) {
    return static_cast<int>(
        std::distance(c.cbegin(), std::partition_point(c.cbegin(), c.cend(), f)));
}

template <class T> auto make_vec(const int n, const T &value) { return std::vector<T>(n, value); }
template <class... Args> auto make_vec(const int n, Args... args) {
    return std::vector<decltype(make_vec(args...))>(n, make_vec(args...));
}

template <class T, class... Tail>
void renumber(const std::vector<int> &order, std::vector<T> &head, Tail &... tail) {
    const int n = len(order);
    std::vector<T> sorted_head(n);
    REP(i, n) sorted_head[i] = head[order[i]];

    head = std::move(sorted_head);
    if constexpr (sizeof...(Tail) != 0) {
        renumber(order, tail...);
    }
}

template <class Head, class... Tail>
std::vector<int> priority_sort(std::vector<Head> &head, std::vector<Tail> &... tail) {
    const int n = len(head);
    std::vector<std::tuple<Head, Tail..., int>> res(n);
    REP(i, n) res[i] = std::make_tuple(head[i], tail[i]..., i);
    std::sort(res.begin(), res.end());

    std::vector<int> order(n);
    REP(i, 0, n)
    order[i] = std::get<std::tuple_size_v<std::tuple<Head, Tail...>>>(res[i]);
    renumber(order, head, tail...);
    return order;
}

std::vector<int> iotav(const int n) {
    std::vector<int> ret(n);
    std::iota(ret.begin(), ret.end(), 0);
    return ret;
}

template <class Container> auto calc_sum(const Container &c) {
    return std::accumulate(c.cbegin(), c.cend(), static_cast<typename Container::value_type>(0));
}

template <typename T> constexpr T ceil_log2(const T x) {
    int e = 0;
    while ((static_cast<T>(1) << e) < x) ++e;
    return e;
}

template <typename T> constexpr int ceil_pow2(const T x) { return 1 << ceil_log2(x); }
#line 5 "ProCon/Library/template/debug.hpp"
#include <utility>

namespace DebugImpl {

template <typename U, typename = void> struct is_specialize : std::false_type {};
template <typename U>
struct is_specialize<U, typename std::conditional<false, typename U::iterator, void>::type>
    : std::true_type {};
template <typename U>
struct is_specialize<U, typename std::conditional<false, decltype(U::first), void>::type>
    : std::true_type {};
template <typename U>
struct is_specialize<U, std::enable_if_t<std::is_integral<U>::value, void>> : std::true_type {};

void dump(const char &t) { std::cerr << t; }

void dump(const std::string &t) { std::cerr << t; }

void dump(const bool &t) { std::cerr << (t ? "true" : "false"); }

template <typename U, std::enable_if_t<!is_specialize<U>::value, std::nullptr_t> = nullptr>
void dump(const U &t) {
    std::cerr << t;
}

template <typename T>
void dump(const T &t, std::enable_if_t<std::is_integral<T>::value> * = nullptr) {
    std::string res;
    if (is_infty(t)) res = "inf";
    if constexpr (std::is_signed<T>::value) {
        if (is_infty(-t)) res = "-inf";
    }
    if (res.empty()) res = std::to_string(t);
    std::cerr << res;
}

template <typename T, typename U> void dump(const std::pair<T, U> &);
template <typename T> void dump(const std::pair<T *, int> &);

template <typename T>
void dump(const T &t, std::enable_if_t<!std::is_void<typename T::iterator>::value> * = nullptr) {
    std::cerr << "[ ";
    for (auto it = t.begin(); it != t.end();) {
        dump(*it);
        std::cerr << (++it == t.end() ? "" : ", ");
    }
    std::cerr << " ]";
}

template <typename T, typename U> void dump(const std::pair<T, U> &t) {
    std::cerr << "( ";
    dump(t.first);
    std::cerr << ", ";
    dump(t.second);
    std::cerr << " )";
}

template <typename T> void dump(const std::pair<T *, int> &t) {
    std::cerr << "[ ";
    for (int i = 0; i < t.second; i++) {
        dump(t.first[i]);
        std::cerr << (i == t.second - 1 ? "" : ", ");
    }
    std::cerr << " ]";
}

void trace() { std::cerr << std::endl; }
template <typename Head, typename... Tail> void trace(Head &&head, Tail &&... tail) {
    std::cerr << " ";
    dump(head);
    if (sizeof...(tail) != 0) std::cerr << ',';
    trace(std::forward<Tail>(tail)...);
}

} // namespace DebugImpl

#ifdef SIKI_DEBUG
#define vpr(...)                                                                                   \
    do {                                                                                           \
        std::cerr << "## " << #__VA_ARGS__ << " =";                                               \
        DebugImpl::trace(__VA_ARGS__);                                                             \
    } while (0)
#else
#define vpr(...) (void(0))
#endif

// https://github.com/NyaanNyaan/library/blob/master/template/debug.hpp
#line 2 "ProCon/Library/template/macro.hpp"

#define ALL(x) (x).begin(), (x).end()
#define pf push_front
#define pb push_back
#define ef emplace_front
#define eb emplace_back
#define ppf pop_front
#define ppb pop_back
#line 4 "main.cpp"
#include <bits/stdc++.h>

using namespace std;

int main() {
    int T;
    cin >> T;
    while (T--) {
        int N, M, K;
        cin >> N >> M >> K;
        K %= M;
        const int last = M - N;
        if (K < last)
            cout << K << eoln;
        else
            cout << 0 << eoln;
    }
}
0