結果

問題 No.1359 [Zelkova 3rd Tune] 四人セゾン
ユーザー rogi52rogi52
提出日時 2022-10-03 20:46:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 282 ms / 2,000 ms
コード長 810 bytes
コンパイル時間 2,181 ms
コンパイル使用メモリ 207,812 KB
実行使用メモリ 7,168 KB
最終ジャッジ日時 2024-06-08 14:42:02
合計ジャッジ時間 20,433 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 137 ms
5,376 KB
testcase_04 AC 130 ms
5,376 KB
testcase_05 AC 120 ms
5,376 KB
testcase_06 AC 141 ms
5,376 KB
testcase_07 AC 184 ms
5,760 KB
testcase_08 AC 195 ms
5,760 KB
testcase_09 AC 53 ms
5,376 KB
testcase_10 AC 52 ms
5,376 KB
testcase_11 AC 232 ms
6,528 KB
testcase_12 AC 235 ms
6,656 KB
testcase_13 AC 148 ms
5,504 KB
testcase_14 AC 155 ms
5,376 KB
testcase_15 AC 134 ms
5,376 KB
testcase_16 AC 132 ms
5,376 KB
testcase_17 AC 249 ms
6,912 KB
testcase_18 AC 252 ms
6,784 KB
testcase_19 AC 220 ms
6,144 KB
testcase_20 AC 218 ms
6,272 KB
testcase_21 AC 244 ms
6,528 KB
testcase_22 AC 239 ms
6,528 KB
testcase_23 AC 163 ms
5,376 KB
testcase_24 AC 169 ms
5,504 KB
testcase_25 AC 27 ms
5,376 KB
testcase_26 AC 26 ms
5,376 KB
testcase_27 AC 84 ms
5,376 KB
testcase_28 AC 85 ms
5,376 KB
testcase_29 AC 103 ms
5,376 KB
testcase_30 AC 109 ms
5,376 KB
testcase_31 AC 138 ms
5,376 KB
testcase_32 AC 136 ms
5,376 KB
testcase_33 AC 106 ms
5,376 KB
testcase_34 AC 100 ms
5,376 KB
testcase_35 AC 134 ms
5,376 KB
testcase_36 AC 132 ms
5,376 KB
testcase_37 AC 27 ms
5,376 KB
testcase_38 AC 27 ms
5,376 KB
testcase_39 AC 22 ms
5,376 KB
testcase_40 AC 22 ms
5,376 KB
testcase_41 AC 49 ms
5,376 KB
testcase_42 AC 47 ms
5,376 KB
testcase_43 AC 39 ms
5,376 KB
testcase_44 AC 260 ms
6,784 KB
testcase_45 AC 107 ms
5,376 KB
testcase_46 AC 36 ms
5,376 KB
testcase_47 AC 178 ms
5,760 KB
testcase_48 AC 172 ms
5,632 KB
testcase_49 AC 174 ms
5,888 KB
testcase_50 AC 129 ms
5,376 KB
testcase_51 AC 8 ms
5,376 KB
testcase_52 AC 233 ms
6,528 KB
testcase_53 AC 249 ms
7,040 KB
testcase_54 AC 268 ms
7,040 KB
testcase_55 AC 268 ms
7,040 KB
testcase_56 AC 263 ms
7,168 KB
testcase_57 AC 267 ms
7,040 KB
testcase_58 AC 280 ms
7,040 KB
testcase_59 AC 271 ms
6,912 KB
testcase_60 AC 266 ms
7,040 KB
testcase_61 AC 246 ms
7,168 KB
testcase_62 AC 259 ms
7,040 KB
testcase_63 AC 260 ms
7,168 KB
testcase_64 AC 263 ms
7,040 KB
testcase_65 AC 278 ms
7,040 KB
testcase_66 AC 275 ms
7,040 KB
testcase_67 AC 282 ms
6,912 KB
testcase_68 AC 261 ms
6,912 KB
testcase_69 AC 238 ms
7,040 KB
testcase_70 AC 244 ms
7,040 KB
testcase_71 AC 237 ms
6,912 KB
testcase_72 AC 267 ms
7,168 KB
testcase_73 AC 260 ms
7,040 KB
testcase_74 AC 253 ms
7,040 KB
testcase_75 AC 266 ms
7,040 KB
testcase_76 AC 256 ms
7,040 KB
testcase_77 AC 251 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); i++)
using namespace std;
typedef long long ll;

ll modpow(ll a,ll b,ll mod){
    ll ans = 1;
    a %= mod;
    while(b){
        if(b&1) ans = ans * a % mod;
        a = a * a % mod;
        b >>= 1;
    }
    return ans;
}

int main(){
    cin.tie(0);
    ios::sync_with_stdio(0);
    
    int N,K,M; cin >> N >> K >> M;
    vector<vector<int>> A(4, vector<int>(N));
    rep(k,4) {
        rep(i,N) cin >> A[k][i];
        sort(A[k].begin(), A[k].end());
    }

    ll ans = 0;
    rep(i,N) {
        vector<int> G(4);
        rep(k,4) G[k] = A[k][i];
        int ma = *max_element(G.begin(), G.end());
        int mi = *min_element(G.begin(), G.end());
        ans += modpow(ma - mi, K, M);
        ans %= M;
    }
    cout << ans << endl;
}
0