結果

問題 No.1359 [Zelkova 3rd Tune] 四人セゾン
ユーザー moririn2528_cmoririn2528_c
提出日時 2021-01-23 05:57:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 570 ms / 2,000 ms
コード長 2,011 bytes
コンパイル時間 3,700 ms
コンパイル使用メモリ 165,108 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-06-09 10:37:13
合計ジャッジ時間 38,466 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 276 ms
7,168 KB
testcase_04 AC 270 ms
7,168 KB
testcase_05 AC 256 ms
7,296 KB
testcase_06 AC 258 ms
7,296 KB
testcase_07 AC 378 ms
8,832 KB
testcase_08 AC 371 ms
8,960 KB
testcase_09 AC 104 ms
5,376 KB
testcase_10 AC 105 ms
5,376 KB
testcase_11 AC 476 ms
10,240 KB
testcase_12 AC 474 ms
10,240 KB
testcase_13 AC 306 ms
7,808 KB
testcase_14 AC 306 ms
7,808 KB
testcase_15 AC 274 ms
7,168 KB
testcase_16 AC 273 ms
7,168 KB
testcase_17 AC 509 ms
10,624 KB
testcase_18 AC 508 ms
10,496 KB
testcase_19 AC 438 ms
9,600 KB
testcase_20 AC 438 ms
9,600 KB
testcase_21 AC 538 ms
10,240 KB
testcase_22 AC 472 ms
10,240 KB
testcase_23 AC 318 ms
8,064 KB
testcase_24 AC 322 ms
8,192 KB
testcase_25 AC 51 ms
5,376 KB
testcase_26 AC 50 ms
5,376 KB
testcase_27 AC 167 ms
5,760 KB
testcase_28 AC 168 ms
5,888 KB
testcase_29 AC 203 ms
6,528 KB
testcase_30 AC 205 ms
6,528 KB
testcase_31 AC 275 ms
7,296 KB
testcase_32 AC 272 ms
7,296 KB
testcase_33 AC 204 ms
6,272 KB
testcase_34 AC 201 ms
6,272 KB
testcase_35 AC 270 ms
7,168 KB
testcase_36 AC 266 ms
7,296 KB
testcase_37 AC 55 ms
5,376 KB
testcase_38 AC 53 ms
5,376 KB
testcase_39 AC 46 ms
5,376 KB
testcase_40 AC 44 ms
5,376 KB
testcase_41 AC 95 ms
5,376 KB
testcase_42 AC 94 ms
5,376 KB
testcase_43 AC 77 ms
5,376 KB
testcase_44 AC 495 ms
10,752 KB
testcase_45 AC 212 ms
6,272 KB
testcase_46 AC 73 ms
5,376 KB
testcase_47 AC 362 ms
8,320 KB
testcase_48 AC 326 ms
8,320 KB
testcase_49 AC 333 ms
8,448 KB
testcase_50 AC 263 ms
7,168 KB
testcase_51 AC 14 ms
5,376 KB
testcase_52 AC 441 ms
9,856 KB
testcase_53 AC 515 ms
11,136 KB
testcase_54 AC 570 ms
11,008 KB
testcase_55 AC 535 ms
11,008 KB
testcase_56 AC 527 ms
11,008 KB
testcase_57 AC 533 ms
11,008 KB
testcase_58 AC 531 ms
11,136 KB
testcase_59 AC 528 ms
11,136 KB
testcase_60 AC 534 ms
11,008 KB
testcase_61 AC 505 ms
11,008 KB
testcase_62 AC 529 ms
11,008 KB
testcase_63 AC 526 ms
11,008 KB
testcase_64 AC 532 ms
11,008 KB
testcase_65 AC 526 ms
11,136 KB
testcase_66 AC 522 ms
11,008 KB
testcase_67 AC 546 ms
11,008 KB
testcase_68 AC 521 ms
11,136 KB
testcase_69 AC 538 ms
11,008 KB
testcase_70 AC 504 ms
11,136 KB
testcase_71 AC 493 ms
11,008 KB
testcase_72 AC 555 ms
11,136 KB
testcase_73 AC 399 ms
11,008 KB
testcase_74 AC 396 ms
11,008 KB
testcase_75 AC 403 ms
11,008 KB
testcase_76 AC 397 ms
11,008 KB
testcase_77 AC 397 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>
#include<atcoder/all>
using namespace std;
using namespace atcoder;
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