結果

問題 No.1359 [Zelkova 3rd Tune] 四人セゾン
ユーザー kotatsugamekotatsugame
提出日時 2021-01-29 22:59:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 630 ms / 2,000 ms
コード長 415 bytes
コンパイル時間 882 ms
コンパイル使用メモリ 70,016 KB
実行使用メモリ 6,784 KB
最終ジャッジ日時 2024-06-27 09:28:21
合計ジャッジ時間 38,874 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 302 ms
5,376 KB
testcase_04 AC 299 ms
5,376 KB
testcase_05 AC 270 ms
5,376 KB
testcase_06 AC 271 ms
5,376 KB
testcase_07 AC 403 ms
5,760 KB
testcase_08 AC 409 ms
5,632 KB
testcase_09 AC 113 ms
5,376 KB
testcase_10 AC 113 ms
5,376 KB
testcase_11 AC 521 ms
6,272 KB
testcase_12 AC 525 ms
6,400 KB
testcase_13 AC 351 ms
5,376 KB
testcase_14 AC 334 ms
5,376 KB
testcase_15 AC 341 ms
5,376 KB
testcase_16 AC 290 ms
5,376 KB
testcase_17 AC 553 ms
6,400 KB
testcase_18 AC 549 ms
6,400 KB
testcase_19 AC 482 ms
5,888 KB
testcase_20 AC 478 ms
6,016 KB
testcase_21 AC 515 ms
6,272 KB
testcase_22 AC 511 ms
6,400 KB
testcase_23 AC 353 ms
5,504 KB
testcase_24 AC 357 ms
5,376 KB
testcase_25 AC 58 ms
5,376 KB
testcase_26 AC 56 ms
5,376 KB
testcase_27 AC 184 ms
5,376 KB
testcase_28 AC 192 ms
5,376 KB
testcase_29 AC 226 ms
5,376 KB
testcase_30 AC 225 ms
5,376 KB
testcase_31 AC 303 ms
5,376 KB
testcase_32 AC 301 ms
5,376 KB
testcase_33 AC 223 ms
5,376 KB
testcase_34 AC 224 ms
5,376 KB
testcase_35 AC 296 ms
5,376 KB
testcase_36 AC 294 ms
5,376 KB
testcase_37 AC 61 ms
5,376 KB
testcase_38 AC 61 ms
5,376 KB
testcase_39 AC 49 ms
5,376 KB
testcase_40 AC 49 ms
5,376 KB
testcase_41 AC 114 ms
5,376 KB
testcase_42 AC 107 ms
5,376 KB
testcase_43 AC 90 ms
5,376 KB
testcase_44 AC 565 ms
6,400 KB
testcase_45 AC 235 ms
5,376 KB
testcase_46 AC 78 ms
5,376 KB
testcase_47 AC 389 ms
5,504 KB
testcase_48 AC 377 ms
5,376 KB
testcase_49 AC 374 ms
5,376 KB
testcase_50 AC 287 ms
5,376 KB
testcase_51 AC 15 ms
5,376 KB
testcase_52 AC 499 ms
6,144 KB
testcase_53 AC 566 ms
6,656 KB
testcase_54 AC 630 ms
6,784 KB
testcase_55 AC 567 ms
6,528 KB
testcase_56 AC 573 ms
6,528 KB
testcase_57 AC 587 ms
6,656 KB
testcase_58 AC 581 ms
6,784 KB
testcase_59 AC 579 ms
6,656 KB
testcase_60 AC 570 ms
6,528 KB
testcase_61 AC 547 ms
6,656 KB
testcase_62 AC 584 ms
6,784 KB
testcase_63 AC 585 ms
6,784 KB
testcase_64 AC 584 ms
6,784 KB
testcase_65 AC 579 ms
6,656 KB
testcase_66 AC 600 ms
6,656 KB
testcase_67 AC 586 ms
6,656 KB
testcase_68 AC 575 ms
6,656 KB
testcase_69 AC 551 ms
6,656 KB
testcase_70 AC 553 ms
6,656 KB
testcase_71 AC 525 ms
6,784 KB
testcase_72 AC 577 ms
6,528 KB
testcase_73 AC 560 ms
6,656 KB
testcase_74 AC 575 ms
6,784 KB
testcase_75 AC 567 ms
6,656 KB
testcase_76 AC 563 ms
6,656 KB
testcase_77 AC 563 ms
6,656 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:8:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    8 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<algorithm>
using namespace std;
int N,K;
long M;
long p(long a,long b){return b?p(a*a%M,b/2)*(b%2?a:1)%M:1;}
int A[4][2<<17];
main()
{
	cin>>N>>K>>M;
	for(int i=0;i<4;i++)
	{
		for(int j=0;j<N;j++)cin>>A[i][j];
		sort(A[i],A[i]+N);
	}
	long ans=0;
	for(int i=0;i<N;i++)
	{
		int B[4];
		for(int j=0;j<4;j++)B[j]=A[j][i];
		sort(B,B+4);
		(ans+=p(B[3]-B[0],K))%=M;
	}
	cout<<ans<<endl;
}
0