結果

問題 No.1359 [Zelkova 3rd Tune] 四人セゾン
ユーザー MayimgMayimg
提出日時 2021-01-22 22:35:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 296 ms / 2,000 ms
コード長 911 bytes
コンパイル時間 2,227 ms
コンパイル使用メモリ 209,020 KB
実行使用メモリ 7,328 KB
最終ジャッジ日時 2024-06-08 16:15:50
合計ジャッジ時間 22,263 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 183 ms
5,376 KB
testcase_04 AC 141 ms
5,376 KB
testcase_05 AC 126 ms
5,376 KB
testcase_06 AC 128 ms
5,376 KB
testcase_07 AC 195 ms
6,080 KB
testcase_08 AC 192 ms
5,952 KB
testcase_09 AC 56 ms
5,376 KB
testcase_10 AC 54 ms
5,376 KB
testcase_11 AC 248 ms
6,752 KB
testcase_12 AC 245 ms
6,784 KB
testcase_13 AC 158 ms
5,504 KB
testcase_14 AC 160 ms
5,508 KB
testcase_15 AC 146 ms
5,376 KB
testcase_16 AC 141 ms
5,376 KB
testcase_17 AC 272 ms
6,860 KB
testcase_18 AC 285 ms
6,940 KB
testcase_19 AC 239 ms
6,496 KB
testcase_20 AC 224 ms
6,364 KB
testcase_21 AC 269 ms
6,688 KB
testcase_22 AC 244 ms
6,556 KB
testcase_23 AC 178 ms
5,648 KB
testcase_24 AC 169 ms
5,772 KB
testcase_25 AC 27 ms
5,376 KB
testcase_26 AC 27 ms
5,376 KB
testcase_27 AC 88 ms
5,376 KB
testcase_28 AC 89 ms
5,376 KB
testcase_29 AC 109 ms
5,376 KB
testcase_30 AC 106 ms
5,376 KB
testcase_31 AC 147 ms
5,376 KB
testcase_32 AC 145 ms
5,376 KB
testcase_33 AC 104 ms
5,376 KB
testcase_34 AC 104 ms
5,376 KB
testcase_35 AC 141 ms
5,376 KB
testcase_36 AC 150 ms
5,376 KB
testcase_37 AC 31 ms
5,376 KB
testcase_38 AC 31 ms
5,376 KB
testcase_39 AC 26 ms
5,376 KB
testcase_40 AC 25 ms
5,376 KB
testcase_41 AC 53 ms
5,376 KB
testcase_42 AC 53 ms
5,376 KB
testcase_43 AC 44 ms
5,376 KB
testcase_44 AC 279 ms
6,912 KB
testcase_45 AC 119 ms
5,376 KB
testcase_46 AC 41 ms
5,376 KB
testcase_47 AC 199 ms
6,004 KB
testcase_48 AC 187 ms
5,632 KB
testcase_49 AC 191 ms
5,888 KB
testcase_50 AC 133 ms
5,392 KB
testcase_51 AC 8 ms
5,376 KB
testcase_52 AC 235 ms
6,724 KB
testcase_53 AC 269 ms
7,072 KB
testcase_54 AC 286 ms
7,072 KB
testcase_55 AC 296 ms
7,076 KB
testcase_56 AC 276 ms
7,200 KB
testcase_57 AC 286 ms
7,076 KB
testcase_58 AC 282 ms
7,200 KB
testcase_59 AC 290 ms
7,076 KB
testcase_60 AC 275 ms
7,068 KB
testcase_61 AC 263 ms
7,196 KB
testcase_62 AC 280 ms
7,200 KB
testcase_63 AC 275 ms
7,200 KB
testcase_64 AC 284 ms
7,204 KB
testcase_65 AC 282 ms
7,200 KB
testcase_66 AC 277 ms
7,076 KB
testcase_67 AC 285 ms
7,200 KB
testcase_68 AC 288 ms
7,328 KB
testcase_69 AC 262 ms
7,200 KB
testcase_70 AC 256 ms
7,168 KB
testcase_71 AC 253 ms
7,072 KB
testcase_72 AC 282 ms
7,196 KB
testcase_73 AC 279 ms
7,196 KB
testcase_74 AC 272 ms
7,168 KB
testcase_75 AC 275 ms
7,200 KB
testcase_76 AC 277 ms
7,068 KB
testcase_77 AC 280 ms
7,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;
signed main() { 
  ios::sync_with_stdio(false); cin.tie(0);
  int n, k, m;
  cin >> n >> k >> m;
  vector<vector<int>> a(4, vector<int>(n));
  for (int i = 0; i < 4; i++) {
    for (auto& x : a[i]) cin >> x;
    sort(a[i].begin(), a[i].end());
  }
  vector<int> vals(n);
  for (int j = 0; j < n; j++) {
    vector<int> v;
    for (int i = 0; i < 4; i++) v.emplace_back(a[i][j]);
    vals[j] = *max_element(v.begin(), v.end()) - *min_element(v.begin(), v.end());
  }
  long long ans = 0;
  auto calc = [&] (int x) -> long long {
    long long res = 1;
    long long c = x;
    int kk = k;
    while (kk > 0) {
      if (kk & 1) {
        res *= c;
        res %= m;
      }
      c *= c;
      c %= m;
      kk >>= 1;
    }
    return res % m;
  };
  for (auto x : vals) {
    (ans += calc(x)) %= m;
  }
  cout << ans << endl;
  return 0;
}
0