結果

問題 No.1359 [Zelkova 3rd Tune] 四人セゾン
ユーザー 夜
提出日時 2021-01-23 09:19:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 500 ms / 2,000 ms
コード長 987 bytes
コンパイル時間 1,011 ms
コンパイル使用メモリ 95,820 KB
実行使用メモリ 9,852 KB
最終ジャッジ日時 2024-06-09 13:21:40
合計ジャッジ時間 29,990 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 247 ms
6,656 KB
testcase_04 AC 237 ms
6,528 KB
testcase_05 AC 232 ms
6,528 KB
testcase_06 AC 226 ms
6,528 KB
testcase_07 AC 341 ms
8,064 KB
testcase_08 AC 339 ms
8,064 KB
testcase_09 AC 93 ms
5,376 KB
testcase_10 AC 95 ms
5,376 KB
testcase_11 AC 436 ms
9,088 KB
testcase_12 AC 429 ms
9,088 KB
testcase_13 AC 278 ms
7,168 KB
testcase_14 AC 273 ms
7,168 KB
testcase_15 AC 236 ms
6,656 KB
testcase_16 AC 236 ms
6,656 KB
testcase_17 AC 452 ms
9,344 KB
testcase_18 AC 455 ms
9,216 KB
testcase_19 AC 391 ms
8,576 KB
testcase_20 AC 391 ms
8,576 KB
testcase_21 AC 424 ms
8,832 KB
testcase_22 AC 426 ms
8,960 KB
testcase_23 AC 296 ms
7,424 KB
testcase_24 AC 299 ms
7,424 KB
testcase_25 AC 48 ms
5,376 KB
testcase_26 AC 49 ms
5,376 KB
testcase_27 AC 154 ms
5,376 KB
testcase_28 AC 154 ms
5,504 KB
testcase_29 AC 189 ms
5,760 KB
testcase_30 AC 190 ms
6,016 KB
testcase_31 AC 254 ms
6,784 KB
testcase_32 AC 251 ms
6,784 KB
testcase_33 AC 187 ms
6,016 KB
testcase_34 AC 186 ms
5,888 KB
testcase_35 AC 249 ms
6,656 KB
testcase_36 AC 248 ms
6,528 KB
testcase_37 AC 50 ms
5,376 KB
testcase_38 AC 51 ms
5,376 KB
testcase_39 AC 41 ms
5,376 KB
testcase_40 AC 41 ms
5,376 KB
testcase_41 AC 88 ms
5,376 KB
testcase_42 AC 89 ms
5,376 KB
testcase_43 AC 72 ms
5,376 KB
testcase_44 AC 460 ms
9,472 KB
testcase_45 AC 194 ms
6,016 KB
testcase_46 AC 67 ms
5,376 KB
testcase_47 AC 328 ms
7,552 KB
testcase_48 AC 310 ms
7,552 KB
testcase_49 AC 312 ms
7,680 KB
testcase_50 AC 240 ms
6,656 KB
testcase_51 AC 13 ms
5,376 KB
testcase_52 AC 405 ms
8,832 KB
testcase_53 AC 465 ms
9,668 KB
testcase_54 AC 481 ms
9,552 KB
testcase_55 AC 477 ms
9,728 KB
testcase_56 AC 486 ms
9,720 KB
testcase_57 AC 489 ms
9,696 KB
testcase_58 AC 486 ms
9,592 KB
testcase_59 AC 483 ms
9,680 KB
testcase_60 AC 479 ms
9,600 KB
testcase_61 AC 470 ms
9,664 KB
testcase_62 AC 486 ms
9,728 KB
testcase_63 AC 484 ms
9,728 KB
testcase_64 AC 482 ms
9,600 KB
testcase_65 AC 475 ms
9,600 KB
testcase_66 AC 479 ms
9,664 KB
testcase_67 AC 500 ms
9,600 KB
testcase_68 AC 468 ms
9,728 KB
testcase_69 AC 452 ms
9,732 KB
testcase_70 AC 462 ms
9,688 KB
testcase_71 AC 449 ms
9,636 KB
testcase_72 AC 484 ms
9,600 KB
testcase_73 AC 475 ms
9,556 KB
testcase_74 AC 472 ms
9,600 KB
testcase_75 AC 473 ms
9,584 KB
testcase_76 AC 475 ms
9,852 KB
testcase_77 AC 474 ms
9,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <iomanip>
#include <cmath>
#include <stdio.h>
#include <queue>
#include <deque>
#include <cstdio>
#include <set>
#include <map>
#include <bitset>
#include <stack>
#include <cctype>
using namespace std;
long long p[200020], e[200020], a[200020], h[200020];
int main() {
	long long n, k, m;
	cin >> n >> k >> m;
	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, p + n);
	sort(e, e + n);
	sort(a, a + n);
	sort(h, h + n);
	long long ans = 0;
	for (int i = 0; i < n; i++) {
		long long x = max({ p[i],e[i],a[i],h[i] }) - min({ p[i],e[i],a[i],h[i] });
		long long y = k;
		long long ans1 = 1;
		while (y > 0) {
			if ((y & 1) == 1) {
				ans1 = ans1 * x % m;
			}
			x = x * x % m;
			y >>= 1;
		}
		ans += ans1;
		ans %= m;
	}
	cout << ans << endl;
}
0