結果

問題 No.1359 [Zelkova 3rd Tune] 四人セゾン
ユーザー kyo1kyo1
提出日時 2021-01-25 15:06:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 280 ms / 2,000 ms
コード長 1,272 bytes
コンパイル時間 2,466 ms
コンパイル使用メモリ 206,756 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-22 05:31:49
合計ジャッジ時間 25,516 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 140 ms
6,944 KB
testcase_04 AC 139 ms
6,944 KB
testcase_05 AC 127 ms
6,940 KB
testcase_06 AC 127 ms
6,940 KB
testcase_07 AC 190 ms
6,940 KB
testcase_08 AC 191 ms
6,940 KB
testcase_09 AC 55 ms
6,940 KB
testcase_10 AC 54 ms
6,944 KB
testcase_11 AC 245 ms
6,940 KB
testcase_12 AC 243 ms
6,940 KB
testcase_13 AC 157 ms
6,944 KB
testcase_14 AC 156 ms
6,940 KB
testcase_15 AC 140 ms
6,944 KB
testcase_16 AC 138 ms
6,940 KB
testcase_17 AC 262 ms
6,940 KB
testcase_18 AC 262 ms
6,944 KB
testcase_19 AC 225 ms
6,944 KB
testcase_20 AC 224 ms
6,940 KB
testcase_21 AC 245 ms
6,944 KB
testcase_22 AC 244 ms
6,940 KB
testcase_23 AC 165 ms
6,940 KB
testcase_24 AC 164 ms
6,940 KB
testcase_25 AC 27 ms
6,940 KB
testcase_26 AC 27 ms
6,940 KB
testcase_27 AC 86 ms
6,940 KB
testcase_28 AC 87 ms
6,944 KB
testcase_29 AC 105 ms
6,944 KB
testcase_30 AC 108 ms
6,940 KB
testcase_31 AC 142 ms
6,940 KB
testcase_32 AC 145 ms
6,940 KB
testcase_33 AC 105 ms
6,944 KB
testcase_34 AC 104 ms
6,940 KB
testcase_35 AC 138 ms
6,940 KB
testcase_36 AC 138 ms
6,940 KB
testcase_37 AC 28 ms
6,940 KB
testcase_38 AC 29 ms
6,940 KB
testcase_39 AC 24 ms
6,940 KB
testcase_40 AC 24 ms
6,944 KB
testcase_41 AC 50 ms
6,944 KB
testcase_42 AC 50 ms
6,944 KB
testcase_43 AC 40 ms
6,940 KB
testcase_44 AC 258 ms
6,940 KB
testcase_45 AC 109 ms
6,940 KB
testcase_46 AC 37 ms
6,940 KB
testcase_47 AC 184 ms
6,944 KB
testcase_48 AC 173 ms
6,940 KB
testcase_49 AC 174 ms
6,944 KB
testcase_50 AC 134 ms
6,944 KB
testcase_51 AC 8 ms
6,944 KB
testcase_52 AC 230 ms
6,944 KB
testcase_53 AC 260 ms
6,944 KB
testcase_54 AC 274 ms
6,940 KB
testcase_55 AC 271 ms
6,944 KB
testcase_56 AC 276 ms
6,940 KB
testcase_57 AC 277 ms
6,948 KB
testcase_58 AC 274 ms
6,944 KB
testcase_59 AC 272 ms
6,940 KB
testcase_60 AC 267 ms
6,940 KB
testcase_61 AC 253 ms
6,940 KB
testcase_62 AC 271 ms
6,940 KB
testcase_63 AC 273 ms
6,940 KB
testcase_64 AC 272 ms
6,944 KB
testcase_65 AC 267 ms
6,944 KB
testcase_66 AC 270 ms
6,940 KB
testcase_67 AC 280 ms
6,944 KB
testcase_68 AC 268 ms
6,940 KB
testcase_69 AC 248 ms
6,944 KB
testcase_70 AC 253 ms
6,944 KB
testcase_71 AC 244 ms
6,944 KB
testcase_72 AC 276 ms
6,944 KB
testcase_73 AC 269 ms
6,940 KB
testcase_74 AC 266 ms
6,944 KB
testcase_75 AC 268 ms
6,940 KB
testcase_76 AC 262 ms
6,940 KB
testcase_77 AC 267 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

template <typename T>
int pow(int x, T n, int mod = std::numeric_limits<int>::max()) {
  int res = 1;
  while (n > 0) {
    if (n & 1) res = static_cast<int64_t>(res) * static_cast<int64_t>(x) % mod;
    x = static_cast<int64_t>(x) * static_cast<int64_t>(x) % mod;
    n >>= 1;
  }
  return res;
}

template <typename T>
int64_t pow(int64_t x, T n, int64_t mod = std::numeric_limits<int64_t>::max()) {
  int64_t res = 1;
  while (n > 0) {
    if (n & 1) res = static_cast<__int128>(res) * static_cast<__int128>(x) % mod;
    x = static_cast<__int128>(x) * static_cast<__int128>(x) % mod;
    n >>= 1;
  }
  return res;
}

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N, K, M;
  cin >> N >> K >> M;
  vector<int> A(N), B(N), C(N), D(N);
  for (auto &&e : A) {
    cin >> e;
  }
  for (auto &&e : B) {
    cin >> e;
  }
  for (auto &&e : C) {
    cin >> e;
  }
  for (auto &&e : D) {
    cin >> e;
  }
  sort(A.begin(), A.end());
  sort(B.begin(), B.end());
  sort(C.begin(), C.end());
  sort(D.begin(), D.end());
  int res = 0;
  for (int i = 0; i < N; i++) {
    res += pow(max({A[i], B[i], C[i], D[i]}) - min({A[i], B[i], C[i], D[i]}), K, M);
    res %= M;
  }
  cout << res << '\n';
  return 0;
}
0