結果

問題 No.1359 [Zelkova 3rd Tune] 四人セゾン
ユーザー norikamenorikame
提出日時 2021-01-22 22:28:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 493 ms / 2,000 ms
コード長 2,469 bytes
コンパイル時間 2,364 ms
コンパイル使用メモリ 208,884 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-06-08 15:58:56
合計ジャッジ時間 30,545 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 238 ms
5,376 KB
testcase_04 AC 246 ms
5,376 KB
testcase_05 AC 226 ms
5,376 KB
testcase_06 AC 233 ms
5,376 KB
testcase_07 AC 333 ms
6,016 KB
testcase_08 AC 335 ms
6,016 KB
testcase_09 AC 92 ms
5,376 KB
testcase_10 AC 92 ms
5,376 KB
testcase_11 AC 451 ms
6,784 KB
testcase_12 AC 436 ms
6,784 KB
testcase_13 AC 269 ms
5,504 KB
testcase_14 AC 272 ms
5,632 KB
testcase_15 AC 238 ms
5,376 KB
testcase_16 AC 240 ms
5,376 KB
testcase_17 AC 464 ms
7,040 KB
testcase_18 AC 454 ms
6,912 KB
testcase_19 AC 393 ms
6,400 KB
testcase_20 AC 387 ms
6,400 KB
testcase_21 AC 426 ms
6,656 KB
testcase_22 AC 430 ms
6,528 KB
testcase_23 AC 288 ms
5,632 KB
testcase_24 AC 282 ms
5,632 KB
testcase_25 AC 44 ms
5,376 KB
testcase_26 AC 44 ms
5,376 KB
testcase_27 AC 147 ms
5,376 KB
testcase_28 AC 148 ms
5,376 KB
testcase_29 AC 179 ms
5,376 KB
testcase_30 AC 179 ms
5,376 KB
testcase_31 AC 242 ms
5,376 KB
testcase_32 AC 239 ms
5,376 KB
testcase_33 AC 178 ms
5,376 KB
testcase_34 AC 180 ms
5,376 KB
testcase_35 AC 239 ms
5,376 KB
testcase_36 AC 250 ms
5,376 KB
testcase_37 AC 48 ms
5,376 KB
testcase_38 AC 48 ms
5,376 KB
testcase_39 AC 40 ms
5,376 KB
testcase_40 AC 41 ms
5,376 KB
testcase_41 AC 83 ms
5,376 KB
testcase_42 AC 82 ms
5,376 KB
testcase_43 AC 67 ms
5,376 KB
testcase_44 AC 451 ms
6,912 KB
testcase_45 AC 187 ms
5,376 KB
testcase_46 AC 64 ms
5,376 KB
testcase_47 AC 324 ms
5,760 KB
testcase_48 AC 290 ms
5,760 KB
testcase_49 AC 295 ms
5,760 KB
testcase_50 AC 232 ms
5,376 KB
testcase_51 AC 12 ms
5,376 KB
testcase_52 AC 392 ms
6,528 KB
testcase_53 AC 452 ms
7,168 KB
testcase_54 AC 493 ms
7,040 KB
testcase_55 AC 468 ms
7,168 KB
testcase_56 AC 469 ms
7,040 KB
testcase_57 AC 477 ms
7,168 KB
testcase_58 AC 472 ms
7,168 KB
testcase_59 AC 464 ms
7,296 KB
testcase_60 AC 456 ms
7,168 KB
testcase_61 AC 443 ms
7,168 KB
testcase_62 AC 464 ms
7,168 KB
testcase_63 AC 464 ms
7,168 KB
testcase_64 AC 476 ms
7,168 KB
testcase_65 AC 469 ms
7,040 KB
testcase_66 AC 462 ms
7,168 KB
testcase_67 AC 483 ms
7,168 KB
testcase_68 AC 462 ms
7,168 KB
testcase_69 AC 433 ms
7,296 KB
testcase_70 AC 436 ms
7,168 KB
testcase_71 AC 431 ms
7,040 KB
testcase_72 AC 476 ms
7,168 KB
testcase_73 AC 463 ms
7,168 KB
testcase_74 AC 467 ms
7,296 KB
testcase_75 AC 466 ms
7,168 KB
testcase_76 AC 453 ms
7,168 KB
testcase_77 AC 481 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using ll = long long;
using ull = unsigned long long;
#define v(t) vector<t>
//#define p(t) pair<t, t>
//#define p2(t, s) pair<t, s>
#define vp(t) v(p(t))

#define rep(i, n) for (int i=0,i##_len=((int)(n)); i<i##_len; ++i)
#define rep2(i, a, n) for (int i=((int)(a)),i##_len=((int)(n)); i<=i##_len; ++i)
#define repr(i, n) for (int i=((int)(n)-1); i>=0; --i)
#define rep2r(i, a, n) for (int i=((int)(n)),i##_len=((int)(a)); i>=i##_len; --i)

#define repi(itr, c) for (__typeof((c).begin()) itr=(c).begin(); itr!=(c).end(); ++itr)
#define repir(itr, c) for (__typeof((c).rbegin()) itr=(c).rbegin(); itr!=(c).rend(); ++itr)

#define sz(x) ((int)(x).size())
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()

#define SORT(v, n) sort(v, v+n);
#define VSORT(v) sort(v.begin(), v.end());
#define RSORT(x) sort(rall(x));
#define pb push_back
#define eb emplace_back

#define INF (1e9)
#define LINF (1e18)
#define PI (acos(-1))
#define EPS (1e-7)
#define DEPS (1e-10)

ll mod = (1e9+7);

struct mint {
    ll x;
    mint(ll x=0):x((x%mod+mod)%mod){}
    mint operator-() const { return mint(-x);}
    mint& operator+=(const mint a) {
        if ((x += a.x) >= mod) x -= mod;
        return *this;
    }
    mint& operator-=(const mint a) {
        if ((x += mod-a.x) >= mod) x -= mod;
        return *this;
    }
    mint& operator*=(const mint a) { (x *= a.x) %= mod; return *this;}
    mint operator+(const mint a) const { return mint(*this) += a;}
    mint operator-(const mint a) const { return mint(*this) -= a;}
    mint operator*(const mint a) const { return mint(*this) *= a;}
    mint pow(ll t) const {
        if (!t) return 1;
        mint a = pow(t>>1);
        a *= a;
        if (t&1) a *= *this;
        return a;
    }
};
istream& operator>>(istream& is, mint& a) { return is >> a.x; }
ostream& operator<<(ostream& os, const mint& a) { return os << a.x; }

int main(){
    int n, k, m;
    cin >> n >> k >> m;
    mod = m;
    v(v(int)) p(4, v(int)(n));
    rep(i1, 4) rep(i, n) cin >> p[i1][i];
    rep(i, 4) { VSORT(p[i]); }
    mint sum(0);
    rep(i, n) {
        int mnval = (1e9+5), mxval = 0;
        rep(i1, 4) {
            mnval = min(mnval, p[i1][i]);
            mxval = max(mxval, p[i1][i]);
        }
        sum += mint(mxval-mnval).pow(k);
    }
    cout << sum << endl;
    return 0;
}
0