結果

問題 No.1359 [Zelkova 3rd Tune] 四人セゾン
ユーザー moririn2528_cmoririn2528_c
提出日時 2021-01-23 05:58:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 474 ms / 2,000 ms
コード長 1,964 bytes
コンパイル時間 2,189 ms
コンパイル使用メモリ 104,544 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-06-09 10:39:13
合計ジャッジ時間 28,473 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 246 ms
7,168 KB
testcase_04 AC 255 ms
7,168 KB
testcase_05 AC 225 ms
7,168 KB
testcase_06 AC 227 ms
7,168 KB
testcase_07 AC 323 ms
8,832 KB
testcase_08 AC 326 ms
8,832 KB
testcase_09 AC 91 ms
6,944 KB
testcase_10 AC 91 ms
6,944 KB
testcase_11 AC 418 ms
10,240 KB
testcase_12 AC 410 ms
10,240 KB
testcase_13 AC 267 ms
7,808 KB
testcase_14 AC 267 ms
7,808 KB
testcase_15 AC 243 ms
7,168 KB
testcase_16 AC 238 ms
7,168 KB
testcase_17 AC 446 ms
10,624 KB
testcase_18 AC 447 ms
10,624 KB
testcase_19 AC 390 ms
9,600 KB
testcase_20 AC 385 ms
9,600 KB
testcase_21 AC 474 ms
10,112 KB
testcase_22 AC 421 ms
9,984 KB
testcase_23 AC 278 ms
8,064 KB
testcase_24 AC 287 ms
8,064 KB
testcase_25 AC 47 ms
6,944 KB
testcase_26 AC 46 ms
6,944 KB
testcase_27 AC 146 ms
6,944 KB
testcase_28 AC 151 ms
6,940 KB
testcase_29 AC 177 ms
6,944 KB
testcase_30 AC 176 ms
6,940 KB
testcase_31 AC 238 ms
7,296 KB
testcase_32 AC 238 ms
7,296 KB
testcase_33 AC 179 ms
6,944 KB
testcase_34 AC 177 ms
6,940 KB
testcase_35 AC 233 ms
7,168 KB
testcase_36 AC 234 ms
7,168 KB
testcase_37 AC 47 ms
6,940 KB
testcase_38 AC 49 ms
6,940 KB
testcase_39 AC 43 ms
6,944 KB
testcase_40 AC 43 ms
6,940 KB
testcase_41 AC 89 ms
6,940 KB
testcase_42 AC 88 ms
6,944 KB
testcase_43 AC 68 ms
6,944 KB
testcase_44 AC 437 ms
10,624 KB
testcase_45 AC 186 ms
6,940 KB
testcase_46 AC 64 ms
6,940 KB
testcase_47 AC 315 ms
8,320 KB
testcase_48 AC 291 ms
8,192 KB
testcase_49 AC 292 ms
8,320 KB
testcase_50 AC 231 ms
7,168 KB
testcase_51 AC 12 ms
6,944 KB
testcase_52 AC 394 ms
9,856 KB
testcase_53 AC 447 ms
11,008 KB
testcase_54 AC 462 ms
11,008 KB
testcase_55 AC 464 ms
11,008 KB
testcase_56 AC 461 ms
10,880 KB
testcase_57 AC 468 ms
11,136 KB
testcase_58 AC 467 ms
11,008 KB
testcase_59 AC 467 ms
11,008 KB
testcase_60 AC 450 ms
11,008 KB
testcase_61 AC 435 ms
11,008 KB
testcase_62 AC 457 ms
11,008 KB
testcase_63 AC 457 ms
11,008 KB
testcase_64 AC 470 ms
11,008 KB
testcase_65 AC 461 ms
11,136 KB
testcase_66 AC 452 ms
11,008 KB
testcase_67 AC 473 ms
11,008 KB
testcase_68 AC 457 ms
11,008 KB
testcase_69 AC 424 ms
11,008 KB
testcase_70 AC 430 ms
11,008 KB
testcase_71 AC 429 ms
11,008 KB
testcase_72 AC 467 ms
11,008 KB
testcase_73 AC 353 ms
11,008 KB
testcase_74 AC 344 ms
10,880 KB
testcase_75 AC 344 ms
11,008 KB
testcase_76 AC 342 ms
11,008 KB
testcase_77 AC 345 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cstdio>
#include<cstring>
#include<string>
#include<vector>
#include<cmath>
#include<algorithm>
#include<map>
#include<queue>
#include<deque>
#include<iomanip>
#include<tuple>
#include<cassert>
#include<set>
#include<complex>
#include<numeric>
#include<functional>
using namespace std;
typedef long long int LL;
typedef pair<int,int> P;
typedef pair<LL,int> LP;
const int INF=1<<30;
const LL MAX=1e9+7;

void array_show(int *array,int array_n,char middle=' '){
    for(int i=0;i<array_n;i++)printf("%d%c",array[i],(i!=array_n-1?middle:'\n'));
}
void array_show(LL *array,int array_n,char middle=' '){
    for(int i=0;i<array_n;i++)printf("%lld%c",array[i],(i!=array_n-1?middle:'\n'));
}
void array_show(vector<int> &vec_s,int vec_n=-1,char middle=' '){
    if(vec_n==-1)vec_n=vec_s.size();
    for(int i=0;i<vec_n;i++)printf("%d%c",vec_s[i],(i!=vec_n-1?middle:'\n'));
}
void array_show(vector<LL> &vec_s,int vec_n=-1,char middle=' '){
    if(vec_n==-1)vec_n=vec_s.size();
    for(int i=0;i<vec_n;i++)printf("%lld%c",vec_s[i],(i!=vec_n-1?middle:'\n'));
}

long long int pow_mod(long long int a,long long int n,long long int p=1e9+7){
    //a^n mod p
    long long int b=1,t=1;
    for(;b<=n;b<<=1);
    for(b>>=1;b>0;b>>=1){
        t*=t;
        if(t>=p)t%=p;
        if(n&b)t*=a;
        if(t>=p)t%=p;
    }
    return t;
}

namespace sol{

    void solve(){
        LL n,m,p;
        int i,j,k;
        LL a,b,c;
        cin>>n>>m>>p;
        vector<vector<LL>> v(4,vector<LL>(n));
        for(i=0;i<4;i++){
            for(j=0;j<n;j++){
                cin>>v[i][j];
            }
            sort(v[i].begin(),v[i].end());
        }
        LL s=0;
        for(i=0;i<n;i++){
            a=b=v[0][i];
            for(j=0;j<4;j++){
                a=min(a,v[j][i]);
                b=max(b,v[j][i]);
            }
            s+=pow_mod(b-a,m,p);
        }
        s%=p;
        cout<<s<<endl;
    }
}

int main(){
    sol::solve();
}
0