結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 WA -
testcase_04 WA -
testcase_05 AC 232 ms
6,944 KB
testcase_06 AC 241 ms
6,940 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 396 ms
6,940 KB
testcase_20 AC 407 ms
6,940 KB
testcase_21 AC 439 ms
6,944 KB
testcase_22 AC 425 ms
6,940 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 186 ms
6,940 KB
testcase_30 AC 188 ms
6,940 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 248 ms
6,940 KB
testcase_36 AC 249 ms
6,944 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 89 ms
6,940 KB
testcase_42 AC 89 ms
6,944 KB
testcase_43 AC 73 ms
6,940 KB
testcase_44 AC 475 ms
6,940 KB
testcase_45 AC 194 ms
6,944 KB
testcase_46 WA -
testcase_47 AC 324 ms
6,944 KB
testcase_48 AC 312 ms
6,940 KB
testcase_49 AC 318 ms
6,940 KB
testcase_50 WA -
testcase_51 AC 14 ms
6,944 KB
testcase_52 WA -
testcase_53 AC 471 ms
7,168 KB
testcase_54 AC 486 ms
7,168 KB
testcase_55 AC 486 ms
7,168 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 AC 475 ms
7,296 KB
testcase_61 AC 464 ms
7,168 KB
testcase_62 AC 488 ms
7,168 KB
testcase_63 WA -
testcase_64 AC 495 ms
7,168 KB
testcase_65 AC 486 ms
7,296 KB
testcase_66 AC 485 ms
7,168 KB
testcase_67 WA -
testcase_68 AC 487 ms
7,168 KB
testcase_69 AC 463 ms
7,168 KB
testcase_70 WA -
testcase_71 AC 468 ms
7,168 KB
testcase_72 AC 483 ms
7,168 KB
testcase_73 AC 479 ms
7,168 KB
testcase_74 AC 474 ms
7,168 KB
testcase_75 AC 477 ms
7,168 KB
testcase_76 AC 478 ms
7,040 KB
testcase_77 AC 481 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(Y - X, K, M);
    ans %= M;
  }
  cout << ans << endl;
}
0