結果

問題 No.1359 [Zelkova 3rd Tune] 四人セゾン
ユーザー leaf_1415leaf_1415
提出日時 2021-01-22 21:31:24
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 473 ms / 2,000 ms
コード長 1,172 bytes
コンパイル時間 1,073 ms
コンパイル使用メモリ 83,212 KB
実行使用メモリ 9,672 KB
最終ジャッジ日時 2024-06-08 13:23:41
合計ジャッジ時間 27,802 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 230 ms
6,528 KB
testcase_04 AC 227 ms
6,656 KB
testcase_05 AC 200 ms
6,528 KB
testcase_06 AC 211 ms
6,528 KB
testcase_07 AC 304 ms
8,064 KB
testcase_08 AC 289 ms
7,936 KB
testcase_09 AC 90 ms
5,376 KB
testcase_10 AC 90 ms
5,376 KB
testcase_11 AC 387 ms
9,088 KB
testcase_12 AC 382 ms
8,960 KB
testcase_13 AC 250 ms
7,040 KB
testcase_14 AC 247 ms
7,040 KB
testcase_15 AC 235 ms
6,528 KB
testcase_16 AC 238 ms
6,528 KB
testcase_17 AC 437 ms
9,216 KB
testcase_18 AC 460 ms
9,216 KB
testcase_19 AC 377 ms
8,448 KB
testcase_20 AC 380 ms
8,576 KB
testcase_21 AC 414 ms
8,832 KB
testcase_22 AC 403 ms
8,832 KB
testcase_23 AC 246 ms
7,296 KB
testcase_24 AC 258 ms
7,296 KB
testcase_25 AC 42 ms
5,376 KB
testcase_26 AC 38 ms
5,376 KB
testcase_27 AC 141 ms
5,504 KB
testcase_28 AC 142 ms
5,376 KB
testcase_29 AC 167 ms
5,888 KB
testcase_30 AC 169 ms
5,760 KB
testcase_31 AC 222 ms
6,656 KB
testcase_32 AC 219 ms
6,656 KB
testcase_33 AC 166 ms
5,760 KB
testcase_34 AC 168 ms
5,888 KB
testcase_35 AC 222 ms
6,528 KB
testcase_36 AC 218 ms
6,656 KB
testcase_37 AC 44 ms
5,376 KB
testcase_38 AC 45 ms
5,376 KB
testcase_39 AC 38 ms
5,376 KB
testcase_40 AC 38 ms
5,376 KB
testcase_41 AC 74 ms
5,376 KB
testcase_42 AC 79 ms
5,376 KB
testcase_43 AC 60 ms
5,376 KB
testcase_44 AC 399 ms
9,344 KB
testcase_45 AC 183 ms
5,888 KB
testcase_46 AC 65 ms
5,376 KB
testcase_47 AC 319 ms
7,552 KB
testcase_48 AC 251 ms
7,552 KB
testcase_49 AC 253 ms
7,680 KB
testcase_50 AC 212 ms
6,656 KB
testcase_51 AC 12 ms
5,376 KB
testcase_52 AC 354 ms
8,832 KB
testcase_53 AC 390 ms
9,644 KB
testcase_54 AC 426 ms
9,600 KB
testcase_55 AC 447 ms
9,600 KB
testcase_56 AC 416 ms
9,600 KB
testcase_57 AC 438 ms
9,640 KB
testcase_58 AC 449 ms
9,600 KB
testcase_59 AC 425 ms
9,596 KB
testcase_60 AC 416 ms
9,504 KB
testcase_61 AC 375 ms
9,576 KB
testcase_62 AC 421 ms
9,580 KB
testcase_63 AC 423 ms
9,548 KB
testcase_64 AC 439 ms
9,588 KB
testcase_65 AC 432 ms
9,600 KB
testcase_66 AC 421 ms
9,600 KB
testcase_67 AC 473 ms
9,540 KB
testcase_68 AC 417 ms
9,672 KB
testcase_69 AC 352 ms
9,600 KB
testcase_70 AC 357 ms
9,472 KB
testcase_71 AC 349 ms
9,600 KB
testcase_72 AC 444 ms
9,600 KB
testcase_73 AC 415 ms
9,600 KB
testcase_74 AC 408 ms
9,472 KB
testcase_75 AC 407 ms
9,600 KB
testcase_76 AC 396 ms
9,560 KB
testcase_77 AC 402 ms
9,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <cmath>
#include <ctime>
#include <cstdlib>
#include <cassert>
#include <vector>
#include <list>
#include <stack>
#include <queue>
#include <deque>
#include <map>
#include <set>
#include <bitset>
#include <string>
#include <algorithm>
#include <utility>
#include <complex>
#define rep(x, s, t) for(llint (x) = (s); (x) <= (t); (x)++)
#define chmin(x, y) (x) = min((x), (y))
#define chmax(x, y) (x) = max((x), (y))
#define all(x) (x).begin(),(x).end()
#define inf 1e18

using namespace std;

typedef long long llint;
typedef long long ll;
typedef pair<llint, llint> P;

ll n, k, mod;
ll a[4][200005];

llint modpow(llint a, llint n)
{
	if(n == 0) return 1;
	if(n % 2){
		return ((a%mod) * (modpow(a, n-1)%mod)) % mod;
	}
	else{
		return modpow((a*a)%mod, n/2) % mod;
	}
}

int main(void)
{
	ios::sync_with_stdio(0);
	cin.tie(0);
	
	cin >> n >> k >> mod;
	rep(i, 0, 3){
		rep(j, 1, n){
			cin >> a[i][j];
		}
		sort(a[i]+1, a[i]+n+1);
	}
	
	ll ans = 0;
	rep(i, 1, n){
		ll mn = inf, mx = -inf;
		rep(j, 0, 3) chmax(mx, a[j][i]), chmin(mn, a[j][i]);
		ans += modpow(mx-mn, k), ans %= mod;
	}
	cout << ans << endl;
	
	return 0;
}
0