結果

問題 No.1359 [Zelkova 3rd Tune] 四人セゾン
ユーザー shu8Creamshu8Cream
提出日時 2021-01-22 23:10:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 534 ms / 2,000 ms
コード長 953 bytes
コンパイル時間 2,184 ms
コンパイル使用メモリ 205,568 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-06-08 17:49:34
合計ジャッジ時間 27,836 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 293 ms
5,376 KB
testcase_04 AC 203 ms
5,376 KB
testcase_05 AC 164 ms
5,376 KB
testcase_06 AC 192 ms
5,376 KB
testcase_07 AC 253 ms
5,376 KB
testcase_08 AC 267 ms
5,376 KB
testcase_09 AC 72 ms
5,376 KB
testcase_10 AC 76 ms
5,376 KB
testcase_11 AC 327 ms
6,016 KB
testcase_12 AC 325 ms
5,888 KB
testcase_13 AC 216 ms
5,376 KB
testcase_14 AC 211 ms
5,376 KB
testcase_15 AC 193 ms
5,376 KB
testcase_16 AC 194 ms
5,376 KB
testcase_17 AC 382 ms
6,144 KB
testcase_18 AC 359 ms
6,144 KB
testcase_19 AC 329 ms
5,632 KB
testcase_20 AC 304 ms
5,632 KB
testcase_21 AC 332 ms
6,016 KB
testcase_22 AC 349 ms
5,888 KB
testcase_23 AC 217 ms
5,376 KB
testcase_24 AC 274 ms
5,376 KB
testcase_25 AC 36 ms
5,376 KB
testcase_26 AC 37 ms
5,376 KB
testcase_27 AC 125 ms
5,376 KB
testcase_28 AC 118 ms
5,376 KB
testcase_29 AC 152 ms
5,376 KB
testcase_30 AC 146 ms
5,376 KB
testcase_31 AC 229 ms
5,376 KB
testcase_32 AC 201 ms
5,376 KB
testcase_33 AC 170 ms
5,376 KB
testcase_34 AC 150 ms
5,376 KB
testcase_35 AC 210 ms
5,376 KB
testcase_36 AC 198 ms
5,376 KB
testcase_37 AC 40 ms
5,376 KB
testcase_38 AC 40 ms
5,376 KB
testcase_39 AC 36 ms
5,376 KB
testcase_40 AC 31 ms
5,376 KB
testcase_41 AC 76 ms
5,376 KB
testcase_42 AC 66 ms
5,376 KB
testcase_43 AC 54 ms
5,376 KB
testcase_44 AC 383 ms
6,272 KB
testcase_45 AC 154 ms
5,376 KB
testcase_46 AC 52 ms
5,376 KB
testcase_47 AC 276 ms
5,376 KB
testcase_48 AC 248 ms
5,376 KB
testcase_49 AC 234 ms
5,376 KB
testcase_50 AC 181 ms
5,376 KB
testcase_51 AC 10 ms
5,376 KB
testcase_52 AC 404 ms
5,888 KB
testcase_53 AC 411 ms
6,272 KB
testcase_54 AC 396 ms
6,400 KB
testcase_55 AC 362 ms
6,400 KB
testcase_56 AC 373 ms
6,400 KB
testcase_57 AC 379 ms
6,272 KB
testcase_58 AC 376 ms
6,272 KB
testcase_59 AC 389 ms
6,400 KB
testcase_60 AC 352 ms
6,272 KB
testcase_61 AC 321 ms
6,272 KB
testcase_62 AC 357 ms
6,272 KB
testcase_63 AC 361 ms
6,272 KB
testcase_64 AC 373 ms
6,400 KB
testcase_65 AC 371 ms
6,400 KB
testcase_66 AC 383 ms
6,400 KB
testcase_67 AC 409 ms
6,400 KB
testcase_68 AC 359 ms
6,400 KB
testcase_69 AC 322 ms
6,272 KB
testcase_70 AC 323 ms
6,400 KB
testcase_71 AC 318 ms
6,400 KB
testcase_72 AC 534 ms
6,400 KB
testcase_73 AC 355 ms
6,272 KB
testcase_74 AC 357 ms
6,272 KB
testcase_75 AC 381 ms
6,272 KB
testcase_76 AC 348 ms
6,272 KB
testcase_77 AC 353 ms
6,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
*    author:  shu8Cream
*    created: 22.01.2021 22:56:51
**/

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for (int i=0; i<(n); i++)
#define all(x) (x).begin(), (x).end()
using ll = long long;
using P = pair<int,int>;
using vi = vector<int>;
using vvi = vector<vi>;

ll mod_pow(ll a, ll b, ll n){
    if(b==0) return 1;
    if(b%2!=0) return a * mod_pow(a, b-1, n) % n;
    else return mod_pow(a * a % n, b / 2, n) % n;
}

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    ll n,k,m;
    cin >> n >> k >> m;
    vi p(n),e(n),a(n),h(n);
    rep(i,n) cin >> p[i];
    rep(i,n) cin >> e[i];
    rep(i,n) cin >> a[i];
    rep(i,n) cin >> h[i];
    sort(all(p));
    sort(all(e));
    sort(all(a));
    sort(all(h));
    ll ans = 0;
    rep(i,n){
        ll x = max({p[i], e[i], a[i], h[i]});
        ll y = min({p[i], e[i], a[i], h[i]});
        ans+=mod_pow(x-y,k,m);
    }
    ans%=m;
    cout << ans << endl;
}
0