結果

問題 No.1359 [Zelkova 3rd Tune] 四人セゾン
ユーザー SSRSSSRS
提出日時 2021-01-22 21:39:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 505 ms / 2,000 ms
コード長 758 bytes
コンパイル時間 1,992 ms
コンパイル使用メモリ 174,208 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-06-08 13:56:20
合計ジャッジ時間 31,850 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 253 ms
6,940 KB
testcase_04 AC 256 ms
6,940 KB
testcase_05 AC 239 ms
6,944 KB
testcase_06 AC 238 ms
6,944 KB
testcase_07 AC 351 ms
6,940 KB
testcase_08 AC 351 ms
6,944 KB
testcase_09 AC 97 ms
6,940 KB
testcase_10 AC 97 ms
6,940 KB
testcase_11 AC 445 ms
6,944 KB
testcase_12 AC 445 ms
6,944 KB
testcase_13 AC 287 ms
6,944 KB
testcase_14 AC 288 ms
6,940 KB
testcase_15 AC 248 ms
6,940 KB
testcase_16 AC 250 ms
6,940 KB
testcase_17 AC 470 ms
6,940 KB
testcase_18 AC 471 ms
6,944 KB
testcase_19 AC 410 ms
6,940 KB
testcase_20 AC 410 ms
6,940 KB
testcase_21 AC 438 ms
6,940 KB
testcase_22 AC 441 ms
6,944 KB
testcase_23 AC 304 ms
6,940 KB
testcase_24 AC 306 ms
6,944 KB
testcase_25 AC 48 ms
6,940 KB
testcase_26 AC 48 ms
6,940 KB
testcase_27 AC 159 ms
6,944 KB
testcase_28 AC 157 ms
6,940 KB
testcase_29 AC 193 ms
6,940 KB
testcase_30 AC 191 ms
6,940 KB
testcase_31 AC 259 ms
6,940 KB
testcase_32 AC 258 ms
6,944 KB
testcase_33 AC 190 ms
6,944 KB
testcase_34 AC 189 ms
6,940 KB
testcase_35 AC 252 ms
6,944 KB
testcase_36 AC 252 ms
6,944 KB
testcase_37 AC 51 ms
6,940 KB
testcase_38 AC 51 ms
6,940 KB
testcase_39 AC 42 ms
6,948 KB
testcase_40 AC 42 ms
6,940 KB
testcase_41 AC 91 ms
6,940 KB
testcase_42 AC 90 ms
6,940 KB
testcase_43 AC 74 ms
6,940 KB
testcase_44 AC 473 ms
7,040 KB
testcase_45 AC 197 ms
6,940 KB
testcase_46 AC 68 ms
6,940 KB
testcase_47 AC 335 ms
6,944 KB
testcase_48 AC 321 ms
6,944 KB
testcase_49 AC 321 ms
6,944 KB
testcase_50 AC 246 ms
6,944 KB
testcase_51 AC 14 ms
6,944 KB
testcase_52 AC 419 ms
6,944 KB
testcase_53 AC 484 ms
7,168 KB
testcase_54 AC 496 ms
7,168 KB
testcase_55 AC 492 ms
7,040 KB
testcase_56 AC 499 ms
7,168 KB
testcase_57 AC 500 ms
7,168 KB
testcase_58 AC 499 ms
7,296 KB
testcase_59 AC 498 ms
7,168 KB
testcase_60 AC 490 ms
7,168 KB
testcase_61 AC 477 ms
7,168 KB
testcase_62 AC 492 ms
7,168 KB
testcase_63 AC 494 ms
7,168 KB
testcase_64 AC 496 ms
7,168 KB
testcase_65 AC 494 ms
7,168 KB
testcase_66 AC 493 ms
7,168 KB
testcase_67 AC 505 ms
7,296 KB
testcase_68 AC 495 ms
7,296 KB
testcase_69 AC 476 ms
7,040 KB
testcase_70 AC 475 ms
7,168 KB
testcase_71 AC 469 ms
7,168 KB
testcase_72 AC 498 ms
7,040 KB
testcase_73 AC 492 ms
7,168 KB
testcase_74 AC 490 ms
7,168 KB
testcase_75 AC 496 ms
7,168 KB
testcase_76 AC 486 ms
7,168 KB
testcase_77 AC 488 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
long long modpow(long long a, long long b, long long MOD){
  long long ans = 1;
  while (b > 0){
    if (b % 2 == 1){
      ans *= a;
      ans %= MOD;
    }
    a *= a;
    a %= MOD;
    b /= 2;
  }
  return ans;
}
int main(){
  int N, K, M;
  cin >> N >> K >> M;
  vector<vector<int>> A(4, vector<int>(N));
  for (int i = 0; i < 4; i++){
    for (int j = 0; j < N; j++){
      cin >> A[i][j];
    }
  }
  for (int i = 0; i < 4; i++){
    sort(A[i].begin(), A[i].end());
  }
  long long ans = 0;
  for (int i = 0; i < N; i++){
    int X = max({A[0][i], A[1][i], A[2][i], A[3][i]});
    int Y = min({A[0][i], A[1][i], A[2][i], A[3][i]});
    ans += modpow(X - Y, K, M);
    ans %= M;
  }
  cout << ans << endl;
}
0