結果

問題 No.1359 [Zelkova 3rd Tune] 四人セゾン
ユーザー vkgainzvkgainz
提出日時 2021-06-12 08:01:59
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 558 ms / 2,000 ms
コード長 1,051 bytes
コンパイル時間 7,609 ms
コンパイル使用メモリ 163,768 KB
実行使用メモリ 7,168 KB
最終ジャッジ日時 2024-05-09 10:05:08
合計ジャッジ時間 43,442 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 278 ms
5,376 KB
testcase_04 AC 276 ms
5,376 KB
testcase_05 AC 260 ms
5,376 KB
testcase_06 AC 258 ms
5,376 KB
testcase_07 AC 377 ms
6,016 KB
testcase_08 AC 374 ms
6,016 KB
testcase_09 AC 109 ms
5,376 KB
testcase_10 AC 106 ms
5,376 KB
testcase_11 AC 480 ms
6,656 KB
testcase_12 AC 479 ms
6,784 KB
testcase_13 AC 307 ms
5,504 KB
testcase_14 AC 308 ms
5,376 KB
testcase_15 AC 274 ms
5,376 KB
testcase_16 AC 276 ms
5,376 KB
testcase_17 AC 522 ms
6,912 KB
testcase_18 AC 523 ms
6,784 KB
testcase_19 AC 447 ms
6,272 KB
testcase_20 AC 448 ms
6,400 KB
testcase_21 AC 485 ms
6,528 KB
testcase_22 AC 485 ms
6,528 KB
testcase_23 AC 327 ms
5,632 KB
testcase_24 AC 321 ms
5,632 KB
testcase_25 AC 50 ms
5,376 KB
testcase_26 AC 50 ms
5,376 KB
testcase_27 AC 180 ms
5,376 KB
testcase_28 AC 179 ms
5,376 KB
testcase_29 AC 216 ms
5,376 KB
testcase_30 AC 216 ms
5,376 KB
testcase_31 AC 294 ms
5,376 KB
testcase_32 AC 293 ms
5,376 KB
testcase_33 AC 209 ms
5,376 KB
testcase_34 AC 208 ms
5,376 KB
testcase_35 AC 274 ms
5,376 KB
testcase_36 AC 273 ms
5,376 KB
testcase_37 AC 55 ms
5,376 KB
testcase_38 AC 55 ms
5,376 KB
testcase_39 AC 45 ms
5,376 KB
testcase_40 AC 46 ms
5,376 KB
testcase_41 AC 96 ms
5,376 KB
testcase_42 AC 96 ms
5,376 KB
testcase_43 AC 77 ms
5,376 KB
testcase_44 AC 501 ms
7,040 KB
testcase_45 AC 219 ms
5,376 KB
testcase_46 AC 74 ms
5,376 KB
testcase_47 AC 369 ms
5,760 KB
testcase_48 AC 337 ms
5,760 KB
testcase_49 AC 342 ms
5,632 KB
testcase_50 AC 265 ms
5,376 KB
testcase_51 AC 14 ms
5,376 KB
testcase_52 AC 458 ms
6,400 KB
testcase_53 AC 515 ms
7,040 KB
testcase_54 AC 544 ms
7,168 KB
testcase_55 AC 538 ms
7,168 KB
testcase_56 AC 534 ms
7,168 KB
testcase_57 AC 545 ms
7,168 KB
testcase_58 AC 545 ms
7,040 KB
testcase_59 AC 535 ms
7,168 KB
testcase_60 AC 527 ms
7,168 KB
testcase_61 AC 521 ms
7,168 KB
testcase_62 AC 534 ms
7,168 KB
testcase_63 AC 532 ms
7,168 KB
testcase_64 AC 548 ms
7,040 KB
testcase_65 AC 536 ms
7,040 KB
testcase_66 AC 530 ms
7,040 KB
testcase_67 AC 558 ms
7,168 KB
testcase_68 AC 531 ms
7,040 KB
testcase_69 AC 503 ms
7,168 KB
testcase_70 AC 505 ms
7,168 KB
testcase_71 AC 496 ms
7,040 KB
testcase_72 AC 554 ms
7,040 KB
testcase_73 AC 482 ms
7,040 KB
testcase_74 AC 481 ms
7,168 KB
testcase_75 AC 483 ms
7,168 KB
testcase_76 AC 478 ms
7,168 KB
testcase_77 AC 480 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

long long power(long long b, int p, long long M) {
    if(p == 0) return 1LL;
    long long x = power(b, p / 2, M);
    x = x * x % M;
    if(p % 2) x = x * b % M;
    return x;
}

int main() {
    int N, K, M; cin >> N >> K >> M;
    vector<int> P(N), E(N), A(N), H(N);
    for(int i = 0; i < N; i++) {
        cin >> P[i];
    }
    for(int i = 0; i < N; i++) {
        cin >> E[i];
    }
    for(int i = 0; i < N; i++) {
        cin >> A[i];
    }
    for(int i = 0; i < N; i++) {
        cin >> H[i];
    }
    sort(P.begin(), P.end());
    sort(E.begin(), E.end());
    sort(A.begin(), A.end());
    sort(H.begin(), H.end());
    vector<int> D(N);
    for(int i = 0; i < N; i++) {
        int mx = 0, mn = 1000000000;
        mx = max({P[i], E[i], A[i], H[i]});
        mn = min({P[i], E[i], A[i], H[i]});
        D[i] = (mx - mn);
    }
    long long ans = 0LL;
    for(int i = 0; i < N; i++) {
        ans += power(D[i], K, M);
        ans %= M;
    }
    if(ans < 0) ans += M;
    cout << ans;
}
0