結果

問題 No.1359 [Zelkova 3rd Tune] 四人セゾン
ユーザー 👑 NachiaNachia
提出日時 2021-01-22 22:43:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 233 ms / 2,000 ms
コード長 529 bytes
コンパイル時間 2,619 ms
コンパイル使用メモリ 202,640 KB
実行使用メモリ 6,912 KB
最終ジャッジ日時 2024-06-08 16:30:30
合計ジャッジ時間 19,288 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 4 ms
5,376 KB
testcase_03 AC 147 ms
5,376 KB
testcase_04 AC 131 ms
5,376 KB
testcase_05 AC 119 ms
5,376 KB
testcase_06 AC 120 ms
5,376 KB
testcase_07 AC 179 ms
5,888 KB
testcase_08 AC 233 ms
6,016 KB
testcase_09 AC 51 ms
5,376 KB
testcase_10 AC 50 ms
5,376 KB
testcase_11 AC 230 ms
6,528 KB
testcase_12 AC 195 ms
6,400 KB
testcase_13 AC 127 ms
5,504 KB
testcase_14 AC 128 ms
5,376 KB
testcase_15 AC 110 ms
5,376 KB
testcase_16 AC 109 ms
5,376 KB
testcase_17 AC 207 ms
6,528 KB
testcase_18 AC 208 ms
6,528 KB
testcase_19 AC 186 ms
6,144 KB
testcase_20 AC 179 ms
6,144 KB
testcase_21 AC 210 ms
6,400 KB
testcase_22 AC 192 ms
6,400 KB
testcase_23 AC 135 ms
5,632 KB
testcase_24 AC 134 ms
5,632 KB
testcase_25 AC 24 ms
5,376 KB
testcase_26 AC 22 ms
5,376 KB
testcase_27 AC 69 ms
5,376 KB
testcase_28 AC 70 ms
5,376 KB
testcase_29 AC 85 ms
5,376 KB
testcase_30 AC 89 ms
5,376 KB
testcase_31 AC 118 ms
5,376 KB
testcase_32 AC 118 ms
5,376 KB
testcase_33 AC 99 ms
5,376 KB
testcase_34 AC 86 ms
5,376 KB
testcase_35 AC 134 ms
5,376 KB
testcase_36 AC 110 ms
5,376 KB
testcase_37 AC 27 ms
5,376 KB
testcase_38 AC 23 ms
5,376 KB
testcase_39 AC 20 ms
5,376 KB
testcase_40 AC 19 ms
5,376 KB
testcase_41 AC 47 ms
5,376 KB
testcase_42 AC 40 ms
5,376 KB
testcase_43 AC 38 ms
5,376 KB
testcase_44 AC 213 ms
6,656 KB
testcase_45 AC 88 ms
5,376 KB
testcase_46 AC 35 ms
5,376 KB
testcase_47 AC 146 ms
5,632 KB
testcase_48 AC 139 ms
5,632 KB
testcase_49 AC 139 ms
5,632 KB
testcase_50 AC 106 ms
5,376 KB
testcase_51 AC 6 ms
5,376 KB
testcase_52 AC 183 ms
6,400 KB
testcase_53 AC 209 ms
6,784 KB
testcase_54 AC 219 ms
6,912 KB
testcase_55 AC 218 ms
6,784 KB
testcase_56 AC 222 ms
6,784 KB
testcase_57 AC 220 ms
6,784 KB
testcase_58 AC 217 ms
6,784 KB
testcase_59 AC 220 ms
6,912 KB
testcase_60 AC 211 ms
6,784 KB
testcase_61 AC 204 ms
6,784 KB
testcase_62 AC 217 ms
6,912 KB
testcase_63 AC 219 ms
6,784 KB
testcase_64 AC 219 ms
6,912 KB
testcase_65 AC 214 ms
6,784 KB
testcase_66 AC 219 ms
6,784 KB
testcase_67 AC 220 ms
6,784 KB
testcase_68 AC 213 ms
6,784 KB
testcase_69 AC 204 ms
6,784 KB
testcase_70 AC 208 ms
6,912 KB
testcase_71 AC 199 ms
6,784 KB
testcase_72 AC 218 ms
6,784 KB
testcase_73 AC 214 ms
6,784 KB
testcase_74 AC 211 ms
6,784 KB
testcase_75 AC 212 ms
6,784 KB
testcase_76 AC 214 ms
6,912 KB
testcase_77 AC 212 ms
6,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ULL powm(ULL a,ULL i,ULL m){ ULL r=1; while(i){ if(i%2) r=r*a%m; a=a*a%m; i/=2; } return r; }

int N,K,M;
int A[4][200000];

int main() {
  scanf("%d%d%d",&N,&K,&M);
  rep(i,4){ rep(j,N) scanf("%d",&A[i][j]); sort(A[i],A[i]+N); }
  ULL ans=0;
  rep(i,N){
    int x[4]; rep(j,4) x[j]=A[j][i]; sort(x,x+4);
    ans+=powm(x[3]-x[0],K,M);
  }
  ans%=M;
  printf("%llu\n",ans);
  return 0;
}
0