結果

問題 No.1359 [Zelkova 3rd Tune] 四人セゾン
ユーザー HaaHaa
提出日時 2021-01-22 21:24:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 567 ms / 2,000 ms
コード長 793 bytes
コンパイル時間 1,800 ms
コンパイル使用メモリ 174,292 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-06-08 12:58:57
合計ジャッジ時間 33,440 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 259 ms
7,168 KB
testcase_04 AC 255 ms
7,168 KB
testcase_05 AC 264 ms
7,168 KB
testcase_06 AC 242 ms
7,296 KB
testcase_07 AC 360 ms
8,832 KB
testcase_08 AC 353 ms
8,832 KB
testcase_09 AC 126 ms
6,944 KB
testcase_10 AC 97 ms
6,944 KB
testcase_11 AC 450 ms
10,240 KB
testcase_12 AC 448 ms
10,240 KB
testcase_13 AC 288 ms
7,808 KB
testcase_14 AC 289 ms
7,808 KB
testcase_15 AC 251 ms
7,296 KB
testcase_16 AC 252 ms
7,168 KB
testcase_17 AC 474 ms
10,496 KB
testcase_18 AC 475 ms
10,368 KB
testcase_19 AC 409 ms
9,600 KB
testcase_20 AC 411 ms
9,472 KB
testcase_21 AC 465 ms
9,984 KB
testcase_22 AC 444 ms
10,112 KB
testcase_23 AC 306 ms
8,192 KB
testcase_24 AC 306 ms
8,064 KB
testcase_25 AC 49 ms
6,940 KB
testcase_26 AC 49 ms
6,940 KB
testcase_27 AC 157 ms
6,944 KB
testcase_28 AC 159 ms
6,940 KB
testcase_29 AC 194 ms
6,940 KB
testcase_30 AC 196 ms
6,940 KB
testcase_31 AC 261 ms
7,296 KB
testcase_32 AC 259 ms
7,296 KB
testcase_33 AC 191 ms
6,940 KB
testcase_34 AC 191 ms
6,940 KB
testcase_35 AC 254 ms
7,296 KB
testcase_36 AC 255 ms
7,040 KB
testcase_37 AC 52 ms
6,944 KB
testcase_38 AC 52 ms
6,944 KB
testcase_39 AC 42 ms
6,944 KB
testcase_40 AC 43 ms
6,944 KB
testcase_41 AC 91 ms
6,940 KB
testcase_42 AC 119 ms
6,944 KB
testcase_43 AC 75 ms
6,940 KB
testcase_44 AC 476 ms
10,752 KB
testcase_45 AC 199 ms
6,944 KB
testcase_46 AC 67 ms
6,940 KB
testcase_47 AC 335 ms
8,320 KB
testcase_48 AC 319 ms
8,320 KB
testcase_49 AC 323 ms
8,448 KB
testcase_50 AC 247 ms
7,168 KB
testcase_51 AC 14 ms
6,940 KB
testcase_52 AC 422 ms
9,856 KB
testcase_53 AC 489 ms
11,008 KB
testcase_54 AC 503 ms
11,008 KB
testcase_55 AC 500 ms
10,880 KB
testcase_56 AC 503 ms
11,008 KB
testcase_57 AC 510 ms
11,008 KB
testcase_58 AC 502 ms
11,008 KB
testcase_59 AC 500 ms
11,008 KB
testcase_60 AC 494 ms
11,008 KB
testcase_61 AC 480 ms
11,136 KB
testcase_62 AC 498 ms
11,008 KB
testcase_63 AC 498 ms
11,136 KB
testcase_64 AC 510 ms
10,880 KB
testcase_65 AC 500 ms
11,008 KB
testcase_66 AC 497 ms
11,008 KB
testcase_67 AC 507 ms
11,008 KB
testcase_68 AC 495 ms
11,008 KB
testcase_69 AC 476 ms
11,008 KB
testcase_70 AC 479 ms
11,008 KB
testcase_71 AC 470 ms
10,880 KB
testcase_72 AC 567 ms
11,008 KB
testcase_73 AC 497 ms
11,008 KB
testcase_74 AC 497 ms
11,008 KB
testcase_75 AC 495 ms
11,008 KB
testcase_76 AC 491 ms
11,136 KB
testcase_77 AC 495 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef pair<ll,ll> P;
typedef vector<ll> VI;
typedef vector<VI> VVI;
#define REP(i,n) for(int i=0;i<(n);i++)
#define ALL(v) v.begin(),v.end()
constexpr ll MOD=998244353;
constexpr ll INF=1e18;

ll power(ll x, ll y, ll m){
    x%=m;
    ll ret=1;
    while(y){
        if(y&1) ret=ret*x%m;
        x=x*x%m;
        y>>=1;
    }
    return ret;
}

int main(){
    int n, k, m; cin >> n >> k >> m;
    VVI a(4,VI(n));
    REP(i,4)REP(j,n) cin >> a[i][j];
    REP(i,4) sort(ALL(a[i]));
    ll ans=0;
    REP(i,n){
        ll mx=0, mn=INF;
        REP(j,4){
            mx=max(mx,a[j][i]);
            mn=min(mn,a[j][i]);
        }
        ans+=power(mx-mn,k,m);
        ans%=m;
    }
    cout << ans << endl;
    return 0;
}
0