結果

問題 No.1359 [Zelkova 3rd Tune] 四人セゾン
ユーザー Example0911Example0911
提出日時 2021-01-22 21:29:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 327 ms / 2,000 ms
コード長 1,852 bytes
コンパイル時間 1,942 ms
コンパイル使用メモリ 207,976 KB
実行使用メモリ 9,600 KB
最終ジャッジ日時 2024-06-08 13:16:38
合計ジャッジ時間 21,640 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 150 ms
6,400 KB
testcase_04 AC 153 ms
6,400 KB
testcase_05 AC 127 ms
6,400 KB
testcase_06 AC 138 ms
6,400 KB
testcase_07 AC 191 ms
7,808 KB
testcase_08 AC 193 ms
7,808 KB
testcase_09 AC 54 ms
5,376 KB
testcase_10 AC 61 ms
5,376 KB
testcase_11 AC 240 ms
8,704 KB
testcase_12 AC 256 ms
8,832 KB
testcase_13 AC 159 ms
6,912 KB
testcase_14 AC 160 ms
6,912 KB
testcase_15 AC 143 ms
6,400 KB
testcase_16 AC 146 ms
6,272 KB
testcase_17 AC 277 ms
8,960 KB
testcase_18 AC 296 ms
9,088 KB
testcase_19 AC 247 ms
8,320 KB
testcase_20 AC 251 ms
8,320 KB
testcase_21 AC 268 ms
8,704 KB
testcase_22 AC 275 ms
8,576 KB
testcase_23 AC 166 ms
7,168 KB
testcase_24 AC 175 ms
7,040 KB
testcase_25 AC 27 ms
5,376 KB
testcase_26 AC 27 ms
5,376 KB
testcase_27 AC 92 ms
5,376 KB
testcase_28 AC 92 ms
5,376 KB
testcase_29 AC 113 ms
5,632 KB
testcase_30 AC 115 ms
5,504 KB
testcase_31 AC 150 ms
6,528 KB
testcase_32 AC 139 ms
6,528 KB
testcase_33 AC 114 ms
5,632 KB
testcase_34 AC 105 ms
5,632 KB
testcase_35 AC 150 ms
6,400 KB
testcase_36 AC 139 ms
6,400 KB
testcase_37 AC 30 ms
5,376 KB
testcase_38 AC 28 ms
5,376 KB
testcase_39 AC 24 ms
5,376 KB
testcase_40 AC 23 ms
5,376 KB
testcase_41 AC 52 ms
5,376 KB
testcase_42 AC 46 ms
5,376 KB
testcase_43 AC 43 ms
5,376 KB
testcase_44 AC 280 ms
9,216 KB
testcase_45 AC 112 ms
5,760 KB
testcase_46 AC 38 ms
5,376 KB
testcase_47 AC 192 ms
7,296 KB
testcase_48 AC 171 ms
7,296 KB
testcase_49 AC 169 ms
7,424 KB
testcase_50 AC 134 ms
6,400 KB
testcase_51 AC 8 ms
5,376 KB
testcase_52 AC 254 ms
8,448 KB
testcase_53 AC 278 ms
9,472 KB
testcase_54 AC 300 ms
9,472 KB
testcase_55 AC 274 ms
9,344 KB
testcase_56 AC 274 ms
9,344 KB
testcase_57 AC 277 ms
9,344 KB
testcase_58 AC 280 ms
9,472 KB
testcase_59 AC 308 ms
9,472 KB
testcase_60 AC 291 ms
9,472 KB
testcase_61 AC 261 ms
9,472 KB
testcase_62 AC 283 ms
9,344 KB
testcase_63 AC 268 ms
9,344 KB
testcase_64 AC 270 ms
9,344 KB
testcase_65 AC 270 ms
9,472 KB
testcase_66 AC 261 ms
9,600 KB
testcase_67 AC 282 ms
9,472 KB
testcase_68 AC 263 ms
9,472 KB
testcase_69 AC 238 ms
9,472 KB
testcase_70 AC 327 ms
9,472 KB
testcase_71 AC 292 ms
9,600 KB
testcase_72 AC 276 ms
9,344 KB
testcase_73 AC 263 ms
9,472 KB
testcase_74 AC 260 ms
9,344 KB
testcase_75 AC 281 ms
9,472 KB
testcase_76 AC 277 ms
9,344 KB
testcase_77 AC 261 ms
9,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;

using ll = long long;
using P = pair<ll, ll>;
const ll INF = (1LL << 61);
ll mod = 998244353;
struct mint {
	ll x; // typedef long long ll;
	mint(ll x = 0) :x((x%mod + mod) % mod) {}
	mint operator-() const { return mint(-x); }
	mint& operator+=(const mint a) {
		if ((x += a.x) >= mod) x -= mod;
		return *this;
	}
	mint& operator-=(const mint a) {
		if ((x += mod - a.x) >= mod) x -= mod;
		return *this;
	}
	mint& operator*=(const mint a) {
		(x *= a.x) %= mod;
		return *this;
	}
	mint operator+(const mint a) const {
		mint res(*this);
		return res += a;
	}
	mint operator-(const mint a) const {
		mint res(*this);
		return res -= a;
	}
	mint operator*(const mint a) const {
		mint res(*this);
		return res *= a;
	}
	mint pow(ll t) const {
		if (!t) return 1;
		mint a = pow(t >> 1);
		a *= a;
		if (t & 1) a *= *this;
		return a;
	}

	// for prime mod
	mint inv() const {
		return pow(mod - 2);
	}
	mint& operator/=(const mint a) {
		return (*this) *= a.inv();
	}
	mint operator/(const mint a) const {
		mint res(*this);
		return res /= a;
	}
};
istream& operator>>(istream& is, mint& a) { return is >> a.x; }
ostream& operator<<(ostream& os, const mint& a) { return os << a.x; }
signed main() {
	ios::sync_with_stdio(false);
	cin.tie(0);
	ll N, K, M; cin >> N >> K >> M;
	mod = M;
	vector<ll>P(N), E(N), A(N), H(N);
	for (int i = 0; i < N; i++) {
		cin >> P[i];
	}
	for (int i = 0; i < N; i++) {
		cin >> E[i];
	}for (int i = 0; i < N; i++) {
		cin >> A[i];
	}for (int i = 0; i < N; i++) {
		cin >> H[i];
	}
	sort(P.begin(), P.end());
	sort(E.begin(), E.end());
	sort(A.begin(), A.end());
	sort(H.begin(), H.end());
	mint ans = 0;
	for (int i = 0; i < N; i++) {
		ll now = max({ P[i],E[i],A[i],H[i] }) - min({ P[i],E[i],A[i],H[i] });
		ans += mint(now).pow(K);
	}
	cout << ans << endl;
	return 0;
}
0