結果

問題 No.1359 [Zelkova 3rd Tune] 四人セゾン
ユーザー suzuken_wsuzuken_w
提出日時 2021-01-22 22:29:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 274 ms / 2,000 ms
コード長 1,492 bytes
コンパイル時間 2,830 ms
コンパイル使用メモリ 219,880 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-06-08 16:01:39
合計ジャッジ時間 21,991 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 137 ms
7,040 KB
testcase_04 AC 137 ms
7,040 KB
testcase_05 AC 123 ms
7,168 KB
testcase_06 AC 123 ms
7,040 KB
testcase_07 AC 184 ms
8,832 KB
testcase_08 AC 185 ms
8,960 KB
testcase_09 AC 52 ms
5,376 KB
testcase_10 AC 53 ms
5,376 KB
testcase_11 AC 234 ms
10,240 KB
testcase_12 AC 241 ms
10,240 KB
testcase_13 AC 147 ms
7,808 KB
testcase_14 AC 153 ms
7,808 KB
testcase_15 AC 136 ms
7,168 KB
testcase_16 AC 135 ms
7,168 KB
testcase_17 AC 244 ms
10,496 KB
testcase_18 AC 251 ms
10,368 KB
testcase_19 AC 212 ms
9,472 KB
testcase_20 AC 213 ms
9,600 KB
testcase_21 AC 241 ms
9,984 KB
testcase_22 AC 238 ms
10,112 KB
testcase_23 AC 162 ms
8,192 KB
testcase_24 AC 159 ms
8,064 KB
testcase_25 AC 28 ms
5,376 KB
testcase_26 AC 26 ms
5,376 KB
testcase_27 AC 83 ms
5,760 KB
testcase_28 AC 84 ms
5,888 KB
testcase_29 AC 103 ms
6,272 KB
testcase_30 AC 102 ms
6,400 KB
testcase_31 AC 138 ms
7,296 KB
testcase_32 AC 138 ms
7,296 KB
testcase_33 AC 103 ms
6,272 KB
testcase_34 AC 103 ms
6,144 KB
testcase_35 AC 135 ms
7,168 KB
testcase_36 AC 135 ms
7,040 KB
testcase_37 AC 29 ms
5,376 KB
testcase_38 AC 28 ms
5,376 KB
testcase_39 AC 24 ms
5,376 KB
testcase_40 AC 23 ms
5,376 KB
testcase_41 AC 48 ms
5,376 KB
testcase_42 AC 49 ms
5,376 KB
testcase_43 AC 39 ms
5,376 KB
testcase_44 AC 253 ms
10,624 KB
testcase_45 AC 108 ms
6,144 KB
testcase_46 AC 37 ms
5,376 KB
testcase_47 AC 182 ms
8,448 KB
testcase_48 AC 168 ms
8,320 KB
testcase_49 AC 171 ms
8,320 KB
testcase_50 AC 130 ms
7,168 KB
testcase_51 AC 8 ms
5,376 KB
testcase_52 AC 226 ms
9,856 KB
testcase_53 AC 255 ms
10,880 KB
testcase_54 AC 267 ms
11,008 KB
testcase_55 AC 265 ms
10,880 KB
testcase_56 AC 271 ms
10,880 KB
testcase_57 AC 272 ms
11,008 KB
testcase_58 AC 269 ms
11,008 KB
testcase_59 AC 266 ms
11,008 KB
testcase_60 AC 261 ms
11,008 KB
testcase_61 AC 247 ms
10,880 KB
testcase_62 AC 266 ms
10,880 KB
testcase_63 AC 267 ms
11,008 KB
testcase_64 AC 268 ms
11,008 KB
testcase_65 AC 264 ms
11,008 KB
testcase_66 AC 264 ms
10,880 KB
testcase_67 AC 274 ms
10,880 KB
testcase_68 AC 261 ms
11,008 KB
testcase_69 AC 246 ms
11,008 KB
testcase_70 AC 247 ms
11,008 KB
testcase_71 AC 238 ms
11,008 KB
testcase_72 AC 270 ms
11,008 KB
testcase_73 AC 262 ms
11,136 KB
testcase_74 AC 261 ms
10,880 KB
testcase_75 AC 262 ms
11,008 KB
testcase_76 AC 255 ms
11,008 KB
testcase_77 AC 262 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("O3")
#include<bits/stdc++.h> 
using namespace std;
using ll=long long;
using P=pair<ll,ll>;
template<class T> using V=vector<T>; 
#define fi first
#define se second
#define all(v) (v).begin(),(v).end()
const ll inf=(1e18);
//const ll mod=998244353;
const ll mod=1000000007;
const vector<int> dy={-1,0,1,0},dx={0,-1,0,1};
ll GCD(ll a,ll b) {return b ? GCD(b,a%b):a;}
ll LCM(ll c,ll d){return c/GCD(c,d)*d;}
struct __INIT{__INIT(){cin.tie(0);ios::sync_with_stdio(false);cout<<fixed<<setprecision(15);}} __init;
template<class T> bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T> bool chmin(T &a, const T &b) { if (a>b) { a=b; return 1; } return 0; }
template<class T>void debag(const vector<T> &a){cerr<<"debag :";for(auto v:a)cerr<<v<<" ";cerr<<"\n";}
template<class T>void print(const vector<T> &a){for(auto v:a)cout<<v<<" ";cout<<"\n";}
ll modpow(ll a,ll n,ll m){
      ll res=1;
      while(n){
           if(n&1){
                res*=a;
                res%=m;
           }
           a*=a;
           a%=m;
           n>>=1;
      }
      return res;
}
int main(){
  ll n,k,m;
  cin>>n>>k>>m;
  V<V<ll>> d(4,V<ll>(n));
  for(int i=0;i<4;i++){
      for(int j=0;j<n;j++)cin>>d[i][j];
      sort(all(d[i]));
  }
  ll ans=0;
  for(int i=0;i<n;i++){
      ll ma=0,mi=inf;
      for(int j=0;j<4;j++){
        chmax(ma,d[j][i]);
        chmin(mi,d[j][i]);
      }
      ans+=modpow(ma-mi,k,m);
      ans%=m;
  }
  cout<<ans<<"\n";
}
0