結果

問題 No.1359 [Zelkova 3rd Tune] 四人セゾン
ユーザー rokahikou1rokahikou1
提出日時 2021-01-27 23:51:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 335 ms / 2,000 ms
コード長 3,107 bytes
コンパイル時間 1,891 ms
コンパイル使用メモリ 172,784 KB
実行使用メモリ 9,472 KB
最終ジャッジ日時 2024-06-25 01:03:20
合計ジャッジ時間 27,545 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 184 ms
6,272 KB
testcase_04 AC 158 ms
6,400 KB
testcase_05 AC 144 ms
6,400 KB
testcase_06 AC 173 ms
6,400 KB
testcase_07 AC 211 ms
7,808 KB
testcase_08 AC 211 ms
7,680 KB
testcase_09 AC 63 ms
5,376 KB
testcase_10 AC 62 ms
5,376 KB
testcase_11 AC 272 ms
8,704 KB
testcase_12 AC 271 ms
8,704 KB
testcase_13 AC 174 ms
6,784 KB
testcase_14 AC 174 ms
6,912 KB
testcase_15 AC 161 ms
6,272 KB
testcase_16 AC 161 ms
6,400 KB
testcase_17 AC 303 ms
8,960 KB
testcase_18 AC 301 ms
9,088 KB
testcase_19 AC 259 ms
8,320 KB
testcase_20 AC 257 ms
8,320 KB
testcase_21 AC 335 ms
8,704 KB
testcase_22 AC 282 ms
8,704 KB
testcase_23 AC 179 ms
7,168 KB
testcase_24 AC 210 ms
7,040 KB
testcase_25 AC 54 ms
5,376 KB
testcase_26 AC 28 ms
5,376 KB
testcase_27 AC 97 ms
5,376 KB
testcase_28 AC 117 ms
5,376 KB
testcase_29 AC 118 ms
5,632 KB
testcase_30 AC 134 ms
5,632 KB
testcase_31 AC 173 ms
6,528 KB
testcase_32 AC 158 ms
6,400 KB
testcase_33 AC 122 ms
5,632 KB
testcase_34 AC 116 ms
5,504 KB
testcase_35 AC 166 ms
6,272 KB
testcase_36 AC 155 ms
6,400 KB
testcase_37 AC 35 ms
5,376 KB
testcase_38 AC 32 ms
5,376 KB
testcase_39 AC 28 ms
5,376 KB
testcase_40 AC 27 ms
5,376 KB
testcase_41 AC 53 ms
5,376 KB
testcase_42 AC 54 ms
5,376 KB
testcase_43 AC 44 ms
5,376 KB
testcase_44 AC 280 ms
9,088 KB
testcase_45 AC 125 ms
5,632 KB
testcase_46 AC 44 ms
5,376 KB
testcase_47 AC 213 ms
7,296 KB
testcase_48 AC 186 ms
7,168 KB
testcase_49 AC 187 ms
7,296 KB
testcase_50 AC 150 ms
6,272 KB
testcase_51 AC 8 ms
5,376 KB
testcase_52 AC 256 ms
8,576 KB
testcase_53 AC 283 ms
9,344 KB
testcase_54 AC 306 ms
9,344 KB
testcase_55 AC 307 ms
9,472 KB
testcase_56 AC 305 ms
9,344 KB
testcase_57 AC 311 ms
9,344 KB
testcase_58 AC 309 ms
9,344 KB
testcase_59 AC 301 ms
9,344 KB
testcase_60 AC 293 ms
9,472 KB
testcase_61 AC 279 ms
9,344 KB
testcase_62 AC 301 ms
9,472 KB
testcase_63 AC 300 ms
9,344 KB
testcase_64 AC 308 ms
9,344 KB
testcase_65 AC 307 ms
9,344 KB
testcase_66 AC 295 ms
9,472 KB
testcase_67 AC 321 ms
9,472 KB
testcase_68 AC 296 ms
9,344 KB
testcase_69 AC 265 ms
9,472 KB
testcase_70 AC 272 ms
9,472 KB
testcase_71 AC 266 ms
9,472 KB
testcase_72 AC 312 ms
9,472 KB
testcase_73 AC 299 ms
9,344 KB
testcase_74 AC 298 ms
9,472 KB
testcase_75 AC 303 ms
9,344 KB
testcase_76 AC 293 ms
9,472 KB
testcase_77 AC 295 ms
9,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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 LLA(v) (v).rbegin(), (v).rend()
#define SZ(v) (v).size()
#define INT(...)                                                               \
    int __VA_ARGS__;                                                           \
    read(__VA_ARGS__)
#define LL(...)                                                                \
    ll __VA_ARGS__;                                                            \
    read(__VA_ARGS__)
#define DOUBLE(...)                                                            \
    double __VA_ARGS__;                                                        \
    read(__VA_ARGS__)
#define CHAR(...)                                                              \
    char __VA_ARGS__;                                                          \
    read(__VA_ARGS__)
#define STRING(...)                                                            \
    string __VA_ARGS__;                                                        \
    read(__VA_ARGS__)
#define VEC(type, name, size)                                                  \
    vector<type> name(size);                                                   \
    read(name)
using namespace std;
using ll = long long;
using pii = pair<int, int>;
using pll = pair<ll, ll>;
using Graph = vector<vector<int>>;
template <typename T> struct edge {
    int to;
    T cost;
    edge(int t, T c) : to(t), cost(c) {}
};
template <typename T> using WGraph = vector<vector<edge<T>>>;
const int INF = 1 << 30;
const ll LINF = 1LL << 60;
const int MOD = 1e9 + 7;
template <class T> inline vector<T> make_vec(size_t a, T val) {
    return vector<T>(a, val);
}
template <class... Ts> inline auto make_vec(size_t a, Ts... ts) {
    return vector<decltype(make_vec(ts...))>(a, make_vec(ts...));
}

void read() {}
template <class T> inline void read(T &a) { cin >> a; }
template <class T, class S> inline void read(pair<T, S> &p) {
    read(p.first), read(p.second);
}
template <class T> inline void read(vector<T> &v) {
    for(auto &a : v)
        read(a);
}
template <class Head, class... Tail>
inline void read(Head &head, Tail &...tail) {
    read(head), read(tail...);
}
template <class T> inline void chmax(T &a, T &b) { (a < b ? a = b : a); }
template <class T> inline void chmin(T &a, T &b) { (a > b ? a = b : a); }

ll mod_pow(ll x, ll n, ll mod) {
    if(n == 0)
        return 1;
    ll res = mod_pow(x * x % mod, n / 2, mod);
    if(n & 1)
        res = res * x % mod;
    return res;
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    LL(n, k, m);
    VEC(ll, p, n);
    VEC(ll, e, n);
    VEC(ll, a, n);
    VEC(ll, h, n);
    sort(ALL(p));
    sort(ALL(e));
    sort(ALL(a));
    sort(ALL(h));
    ll res = 0;
    rep(i, n) {
        ll d = max(p[i], max(e[i], max(a[i], h[i]))) -
               min(p[i], min(e[i], min(a[i], h[i])));
        d = mod_pow(d, k, m);
        res = (res + d) % m;
    }
    cout << res << endl;
}
0