結果

問題 No.1359 [Zelkova 3rd Tune] 四人セゾン
ユーザー tnakao0123tnakao0123
提出日時 2021-01-25 15:16:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 269 ms / 2,000 ms
コード長 1,246 bytes
コンパイル時間 931 ms
コンパイル使用メモリ 96,420 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-22 05:53:56
合計ジャッジ時間 21,314 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 136 ms
6,940 KB
testcase_04 AC 134 ms
6,940 KB
testcase_05 AC 122 ms
6,944 KB
testcase_06 AC 119 ms
6,940 KB
testcase_07 AC 187 ms
6,944 KB
testcase_08 AC 192 ms
6,940 KB
testcase_09 AC 54 ms
6,944 KB
testcase_10 AC 53 ms
6,940 KB
testcase_11 AC 237 ms
6,948 KB
testcase_12 AC 239 ms
6,944 KB
testcase_13 AC 157 ms
6,944 KB
testcase_14 AC 163 ms
6,940 KB
testcase_15 AC 139 ms
6,944 KB
testcase_16 AC 136 ms
6,940 KB
testcase_17 AC 261 ms
6,940 KB
testcase_18 AC 257 ms
6,944 KB
testcase_19 AC 220 ms
6,944 KB
testcase_20 AC 217 ms
6,940 KB
testcase_21 AC 236 ms
6,940 KB
testcase_22 AC 235 ms
6,944 KB
testcase_23 AC 159 ms
6,940 KB
testcase_24 AC 159 ms
6,944 KB
testcase_25 AC 26 ms
6,944 KB
testcase_26 AC 27 ms
6,944 KB
testcase_27 AC 82 ms
6,940 KB
testcase_28 AC 82 ms
6,944 KB
testcase_29 AC 100 ms
6,940 KB
testcase_30 AC 102 ms
6,944 KB
testcase_31 AC 135 ms
6,944 KB
testcase_32 AC 136 ms
6,940 KB
testcase_33 AC 101 ms
6,944 KB
testcase_34 AC 104 ms
6,940 KB
testcase_35 AC 131 ms
6,944 KB
testcase_36 AC 134 ms
6,944 KB
testcase_37 AC 28 ms
6,944 KB
testcase_38 AC 27 ms
6,944 KB
testcase_39 AC 23 ms
6,944 KB
testcase_40 AC 23 ms
6,944 KB
testcase_41 AC 49 ms
6,944 KB
testcase_42 AC 47 ms
6,940 KB
testcase_43 AC 39 ms
6,940 KB
testcase_44 AC 245 ms
6,940 KB
testcase_45 AC 105 ms
6,940 KB
testcase_46 AC 35 ms
6,940 KB
testcase_47 AC 173 ms
6,944 KB
testcase_48 AC 165 ms
6,940 KB
testcase_49 AC 169 ms
6,940 KB
testcase_50 AC 130 ms
6,940 KB
testcase_51 AC 7 ms
6,944 KB
testcase_52 AC 219 ms
6,940 KB
testcase_53 AC 245 ms
6,940 KB
testcase_54 AC 264 ms
6,944 KB
testcase_55 AC 269 ms
6,940 KB
testcase_56 AC 265 ms
6,940 KB
testcase_57 AC 269 ms
6,940 KB
testcase_58 AC 266 ms
6,944 KB
testcase_59 AC 262 ms
6,944 KB
testcase_60 AC 257 ms
6,940 KB
testcase_61 AC 247 ms
6,944 KB
testcase_62 AC 265 ms
6,944 KB
testcase_63 AC 266 ms
6,944 KB
testcase_64 AC 268 ms
6,940 KB
testcase_65 AC 262 ms
6,944 KB
testcase_66 AC 262 ms
6,944 KB
testcase_67 AC 269 ms
6,940 KB
testcase_68 AC 258 ms
6,944 KB
testcase_69 AC 244 ms
6,940 KB
testcase_70 AC 245 ms
6,944 KB
testcase_71 AC 239 ms
6,944 KB
testcase_72 AC 266 ms
6,944 KB
testcase_73 AC 261 ms
6,940 KB
testcase_74 AC 257 ms
6,940 KB
testcase_75 AC 252 ms
6,940 KB
testcase_76 AC 254 ms
6,944 KB
testcase_77 AC 253 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 1359.cc:  No.1359 [Zelkova 3rd Tune] 四人セゾン - yukicoder
 */

#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<iostream>
#include<string>
#include<vector>
#include<map>
#include<set>
#include<stack>
#include<list>
#include<queue>
#include<deque>
#include<algorithm>
#include<numeric>
#include<utility>
#include<complex>
#include<functional>
 
using namespace std;

/* constant */

const int MAX_N = 200000;
const int L = 4;

/* typedef */

typedef long long ll;

/* global variables */

int as[L][MAX_N];

/* subroutines */

inline int powmod(int a, int n, int mod) {  // a^n % mod
  int pm = 1;
  while (n > 0) {
    if (n & 1) pm = (ll)pm * a % mod;
    a = (ll)a * a % mod;
    n >>= 1;
  }
  return pm;
}

/* main */

int main() {
  int n, k, m;
  scanf("%d%d%d", &n, &k, &m);

  for (int i = 0; i < L; i++) {
    for (int j = 0; j < n; j++) scanf("%d", as[i] + j);
    sort(as[i], as[i] + n);
  }

  int sum = 0;
  for (int j = 0; j < n; j++) {
    int mina = as[0][j], maxa = as[0][j];
    for (int i = 1; i < L; i++)
      mina = min(mina, as[i][j]), maxa = max(maxa, as[i][j]);

    sum = (sum + powmod(maxa - mina, k, m)) % m;
  }

  printf("%d\n", sum);
  return 0;
}
0