結果

問題 No.1359 [Zelkova 3rd Tune] 四人セゾン
ユーザー ShibuyapShibuyap
提出日時 2021-02-06 07:56:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 599 ms / 2,000 ms
コード長 990 bytes
コンパイル時間 2,113 ms
コンパイル使用メモリ 203,384 KB
実行使用メモリ 9,784 KB
最終ジャッジ日時 2024-07-02 15:55:30
合計ジャッジ時間 34,596 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 259 ms
6,656 KB
testcase_04 AC 225 ms
6,656 KB
testcase_05 AC 214 ms
6,528 KB
testcase_06 AC 241 ms
6,528 KB
testcase_07 AC 311 ms
7,936 KB
testcase_08 AC 322 ms
7,860 KB
testcase_09 AC 87 ms
5,376 KB
testcase_10 AC 86 ms
5,376 KB
testcase_11 AC 396 ms
9,052 KB
testcase_12 AC 393 ms
9,216 KB
testcase_13 AC 277 ms
7,168 KB
testcase_14 AC 251 ms
7,168 KB
testcase_15 AC 224 ms
6,528 KB
testcase_16 AC 222 ms
6,528 KB
testcase_17 AC 494 ms
9,344 KB
testcase_18 AC 419 ms
9,304 KB
testcase_19 AC 390 ms
8,576 KB
testcase_20 AC 362 ms
8,516 KB
testcase_21 AC 545 ms
8,960 KB
testcase_22 AC 389 ms
8,832 KB
testcase_23 AC 274 ms
7,320 KB
testcase_24 AC 273 ms
7,296 KB
testcase_25 AC 43 ms
5,376 KB
testcase_26 AC 42 ms
5,376 KB
testcase_27 AC 141 ms
5,376 KB
testcase_28 AC 143 ms
5,376 KB
testcase_29 AC 175 ms
5,888 KB
testcase_30 AC 206 ms
5,888 KB
testcase_31 AC 302 ms
6,784 KB
testcase_32 AC 241 ms
6,784 KB
testcase_33 AC 174 ms
5,888 KB
testcase_34 AC 173 ms
5,888 KB
testcase_35 AC 250 ms
6,656 KB
testcase_36 AC 225 ms
6,656 KB
testcase_37 AC 53 ms
5,376 KB
testcase_38 AC 44 ms
5,376 KB
testcase_39 AC 42 ms
5,376 KB
testcase_40 AC 37 ms
5,376 KB
testcase_41 AC 85 ms
5,376 KB
testcase_42 AC 80 ms
5,376 KB
testcase_43 AC 67 ms
5,376 KB
testcase_44 AC 446 ms
9,344 KB
testcase_45 AC 174 ms
5,888 KB
testcase_46 AC 59 ms
5,376 KB
testcase_47 AC 292 ms
7,424 KB
testcase_48 AC 290 ms
7,484 KB
testcase_49 AC 294 ms
7,680 KB
testcase_50 AC 222 ms
6,656 KB
testcase_51 AC 12 ms
5,376 KB
testcase_52 AC 378 ms
8,704 KB
testcase_53 AC 599 ms
9,728 KB
testcase_54 AC 438 ms
9,728 KB
testcase_55 AC 499 ms
9,716 KB
testcase_56 AC 504 ms
9,572 KB
testcase_57 AC 470 ms
9,728 KB
testcase_58 AC 449 ms
9,728 KB
testcase_59 AC 449 ms
9,652 KB
testcase_60 AC 438 ms
9,728 KB
testcase_61 AC 481 ms
9,600 KB
testcase_62 AC 499 ms
9,600 KB
testcase_63 AC 437 ms
9,728 KB
testcase_64 AC 445 ms
9,728 KB
testcase_65 AC 450 ms
9,728 KB
testcase_66 AC 436 ms
9,728 KB
testcase_67 AC 454 ms
9,600 KB
testcase_68 AC 444 ms
9,728 KB
testcase_69 AC 420 ms
9,660 KB
testcase_70 AC 432 ms
9,660 KB
testcase_71 AC 416 ms
9,600 KB
testcase_72 AC 449 ms
9,728 KB
testcase_73 AC 493 ms
9,728 KB
testcase_74 AC 491 ms
9,600 KB
testcase_75 AC 472 ms
9,712 KB
testcase_76 AC 433 ms
9,728 KB
testcase_77 AC 443 ms
9,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); ++i)
#define srep(i,s,t) for (int i = s; i < t; ++i)
#define drep(i,n) for(int i = (n)-1; i >= 0; --i)
using namespace std;
typedef long long int ll;
typedef pair<int,int> P;
#define yn {puts("YES");}else{puts("NO");}
#define MAX_N 200005

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

int main() {
    ll n, k, m;
    cin >> n >> k >> m;
    ll a[n], b[n], c[n], d[n];
    rep(i,n) cin >> a[i];
    rep(i,n) cin >> b[i];
    rep(i,n) cin >> c[i];
    rep(i,n) cin >> d[i];
    sort(a,a+n);
    sort(b,b+n);
    sort(c,c+n);
    sort(d,d+n);
    ll ans = 0;
    rep(i,n){
        ll ma = max(max(a[i],b[i]),max(c[i],d[i]));
        ll mi = min(min(a[i],b[i]),min(c[i],d[i]));
        ans += mod_pow(ma-mi, k, m);
        ans %= m;
    }
    cout << ans << endl;
    return 0;
}
 
 
0