結果

問題 No.1359 [Zelkova 3rd Tune] 四人セゾン
ユーザー nok0nok0
提出日時 2021-01-04 17:44:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 323 ms / 2,000 ms
コード長 748 bytes
コンパイル時間 2,309 ms
コンパイル使用メモリ 203,120 KB
実行使用メモリ 6,912 KB
最終ジャッジ日時 2024-06-07 13:07:08
合計ジャッジ時間 20,577 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 137 ms
5,376 KB
testcase_04 AC 135 ms
5,376 KB
testcase_05 AC 125 ms
5,376 KB
testcase_06 AC 154 ms
5,376 KB
testcase_07 AC 201 ms
5,888 KB
testcase_08 AC 207 ms
5,888 KB
testcase_09 AC 52 ms
5,376 KB
testcase_10 AC 69 ms
5,376 KB
testcase_11 AC 245 ms
6,400 KB
testcase_12 AC 245 ms
6,400 KB
testcase_13 AC 154 ms
5,504 KB
testcase_14 AC 154 ms
5,376 KB
testcase_15 AC 138 ms
5,376 KB
testcase_16 AC 136 ms
5,376 KB
testcase_17 AC 256 ms
6,528 KB
testcase_18 AC 263 ms
6,528 KB
testcase_19 AC 225 ms
6,272 KB
testcase_20 AC 220 ms
6,144 KB
testcase_21 AC 246 ms
6,528 KB
testcase_22 AC 236 ms
6,528 KB
testcase_23 AC 164 ms
5,760 KB
testcase_24 AC 173 ms
5,760 KB
testcase_25 AC 26 ms
5,376 KB
testcase_26 AC 27 ms
5,376 KB
testcase_27 AC 84 ms
5,376 KB
testcase_28 AC 92 ms
5,376 KB
testcase_29 AC 103 ms
5,376 KB
testcase_30 AC 123 ms
5,376 KB
testcase_31 AC 149 ms
5,376 KB
testcase_32 AC 140 ms
5,376 KB
testcase_33 AC 107 ms
5,376 KB
testcase_34 AC 105 ms
5,376 KB
testcase_35 AC 136 ms
5,376 KB
testcase_36 AC 137 ms
5,376 KB
testcase_37 AC 31 ms
5,376 KB
testcase_38 AC 28 ms
5,376 KB
testcase_39 AC 25 ms
5,376 KB
testcase_40 AC 23 ms
5,376 KB
testcase_41 AC 50 ms
5,376 KB
testcase_42 AC 48 ms
5,376 KB
testcase_43 AC 42 ms
5,376 KB
testcase_44 AC 323 ms
6,656 KB
testcase_45 AC 115 ms
5,376 KB
testcase_46 AC 40 ms
5,376 KB
testcase_47 AC 192 ms
5,632 KB
testcase_48 AC 175 ms
5,760 KB
testcase_49 AC 174 ms
5,632 KB
testcase_50 AC 135 ms
5,376 KB
testcase_51 AC 8 ms
5,376 KB
testcase_52 AC 250 ms
6,400 KB
testcase_53 AC 260 ms
6,784 KB
testcase_54 AC 278 ms
6,656 KB
testcase_55 AC 266 ms
6,912 KB
testcase_56 AC 264 ms
6,656 KB
testcase_57 AC 275 ms
6,912 KB
testcase_58 AC 277 ms
6,912 KB
testcase_59 AC 268 ms
6,784 KB
testcase_60 AC 267 ms
6,784 KB
testcase_61 AC 254 ms
6,784 KB
testcase_62 AC 275 ms
6,912 KB
testcase_63 AC 270 ms
6,912 KB
testcase_64 AC 269 ms
6,784 KB
testcase_65 AC 271 ms
6,912 KB
testcase_66 AC 277 ms
6,784 KB
testcase_67 AC 297 ms
6,784 KB
testcase_68 AC 269 ms
6,912 KB
testcase_69 AC 251 ms
6,912 KB
testcase_70 AC 248 ms
6,784 KB
testcase_71 AC 240 ms
6,784 KB
testcase_72 AC 275 ms
6,784 KB
testcase_73 AC 265 ms
6,784 KB
testcase_74 AC 259 ms
6,912 KB
testcase_75 AC 273 ms
6,784 KB
testcase_76 AC 262 ms
6,912 KB
testcase_77 AC 261 ms
6,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

int i, n, k, m, res, p[200000], e[200000], a[200000], h[200000];

int modpow(long long x) {
	long long ret = 1;
	int p = k;
	while(p) {
		if(p & 1) (ret *= x) %= m;
		(x *= x) %= m;
		p >>= 1;
	}
	return (int)ret;
}

int main() {
	scanf("%d%d%d", &n, &k, &m);
	for(i = 0; i < n; i++) scanf("%d", &p[i]);
	for(i = 0; i < n; i++) scanf("%d", &e[i]);
	for(i = 0; i < n; i++) scanf("%d", &a[i]);
	for(i = 0; i < n; i++) scanf("%d", &h[i]);

	std::sort(p, p + n);
	std::sort(e, e + n);
	std::sort(a, a + n);
	std::sort(h, h + n);

	for(i = 0; i < n; i++) {
		int MAX = std::max({p[i], e[i], a[i], h[i]});
		int MIN = std::min({p[i], e[i], a[i], h[i]});
		(res += modpow(MAX - MIN)) %= m;
	}

	printf("%d\n", res);

	return 0;
}
0