結果

問題 No.1359 [Zelkova 3rd Tune] 四人セゾン
ユーザー ぷらぷら
提出日時 2021-01-22 21:46:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 499 ms / 2,000 ms
コード長 1,142 bytes
コンパイル時間 2,047 ms
コンパイル使用メモリ 172,376 KB
実行使用メモリ 9,600 KB
最終ジャッジ日時 2024-06-08 14:17:09
合計ジャッジ時間 31,590 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 246 ms
6,400 KB
testcase_04 AC 260 ms
6,400 KB
testcase_05 AC 231 ms
6,400 KB
testcase_06 AC 238 ms
6,400 KB
testcase_07 AC 342 ms
7,680 KB
testcase_08 AC 337 ms
7,680 KB
testcase_09 AC 94 ms
5,376 KB
testcase_10 AC 96 ms
5,376 KB
testcase_11 AC 429 ms
8,960 KB
testcase_12 AC 434 ms
8,832 KB
testcase_13 AC 282 ms
6,912 KB
testcase_14 AC 280 ms
6,912 KB
testcase_15 AC 245 ms
6,400 KB
testcase_16 AC 241 ms
6,400 KB
testcase_17 AC 455 ms
9,216 KB
testcase_18 AC 455 ms
9,088 KB
testcase_19 AC 398 ms
8,320 KB
testcase_20 AC 394 ms
8,448 KB
testcase_21 AC 441 ms
8,704 KB
testcase_22 AC 425 ms
8,704 KB
testcase_23 AC 295 ms
7,168 KB
testcase_24 AC 298 ms
7,168 KB
testcase_25 AC 49 ms
5,376 KB
testcase_26 AC 47 ms
5,376 KB
testcase_27 AC 151 ms
5,376 KB
testcase_28 AC 153 ms
5,376 KB
testcase_29 AC 190 ms
5,632 KB
testcase_30 AC 188 ms
5,632 KB
testcase_31 AC 253 ms
6,528 KB
testcase_32 AC 256 ms
6,528 KB
testcase_33 AC 186 ms
5,632 KB
testcase_34 AC 186 ms
5,632 KB
testcase_35 AC 242 ms
6,400 KB
testcase_36 AC 250 ms
6,400 KB
testcase_37 AC 50 ms
5,376 KB
testcase_38 AC 51 ms
5,376 KB
testcase_39 AC 42 ms
5,376 KB
testcase_40 AC 41 ms
5,376 KB
testcase_41 AC 89 ms
5,376 KB
testcase_42 AC 90 ms
5,376 KB
testcase_43 AC 72 ms
5,376 KB
testcase_44 AC 461 ms
9,216 KB
testcase_45 AC 191 ms
5,632 KB
testcase_46 AC 66 ms
5,376 KB
testcase_47 AC 319 ms
7,296 KB
testcase_48 AC 306 ms
7,296 KB
testcase_49 AC 313 ms
7,424 KB
testcase_50 AC 242 ms
6,400 KB
testcase_51 AC 13 ms
5,376 KB
testcase_52 AC 405 ms
8,704 KB
testcase_53 AC 469 ms
9,472 KB
testcase_54 AC 496 ms
9,472 KB
testcase_55 AC 492 ms
9,472 KB
testcase_56 AC 481 ms
9,600 KB
testcase_57 AC 499 ms
9,472 KB
testcase_58 AC 491 ms
9,472 KB
testcase_59 AC 480 ms
9,472 KB
testcase_60 AC 476 ms
9,472 KB
testcase_61 AC 466 ms
9,344 KB
testcase_62 AC 479 ms
9,472 KB
testcase_63 AC 485 ms
9,600 KB
testcase_64 AC 481 ms
9,472 KB
testcase_65 AC 486 ms
9,472 KB
testcase_66 AC 482 ms
9,472 KB
testcase_67 AC 492 ms
9,472 KB
testcase_68 AC 475 ms
9,472 KB
testcase_69 AC 467 ms
9,472 KB
testcase_70 AC 471 ms
9,600 KB
testcase_71 AC 469 ms
9,472 KB
testcase_72 AC 496 ms
9,600 KB
testcase_73 AC 477 ms
9,600 KB
testcase_74 AC 475 ms
9,472 KB
testcase_75 AC 477 ms
9,472 KB
testcase_76 AC 476 ms
9,472 KB
testcase_77 AC 476 ms
9,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < int(n); i++)
#define rrep(i,n) for(int i = int(n)-1; i >= 0; i--)
#define all(a) a.begin(),a.end()
#define rall(a) a.rbegin(),a.rend()
#define pb push_back
using namespace std;
using ll = long long;
using P = pair<ll,ll>;
int dx[] = {1, 0,-1, 0, 1, 1,-1,-1};
int dy[] = {0, 1, 0,-1, 1,-1, 1,-1};
int mod = 998244353;
int MOD = 1000000007;
int inf = 1001001001;
ll INF = 1001001001001001001;

ll mod_pow(ll x,ll y,ll m) {
    ll res = 1;
    while(y > 0) {
        if(y%2) {
            res = res*x%m;
        }
        x = x*x%m;
        y /= 2;
    }
    return res;
}

int main() {
    int N;
    cin >> N;
    ll K,M;
    cin >> K >> M;
    vector<ll>P(N),E(N),A(N),H(N);
    rep(i,N) {
        cin >> P[i];
    }
    sort(all(P));
    rep(i,N) {
        cin >> E[i];
    }
    sort(all(E));
    rep(i,N) {
        cin >> A[i];
    }
    sort(all(A));
    rep(i,N) {
        cin >> H[i];
    }
    sort(all(H));
    int ans = 0;
    rep(i,N) {
        ans += mod_pow(max({P[i],E[i],A[i],H[i]})-min({P[i],E[i],A[i],H[i]}),K,M);
        ans %= M;
    }
    cout << ans << endl;
}
0