結果

問題 No.1359 [Zelkova 3rd Tune] 四人セゾン
ユーザー 小野寺健小野寺健
提出日時 2021-05-26 21:23:10
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,209 bytes
コンパイル時間 4,740 ms
コンパイル使用メモリ 77,820 KB
実行使用メモリ 61,924 KB
最終ジャッジ日時 2024-12-16 04:33:41
合計ジャッジ時間 129,285 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,656 KB
testcase_01 AC 120 ms
40,288 KB
testcase_02 AC 136 ms
41,244 KB
testcase_03 AC 1,456 ms
59,572 KB
testcase_04 AC 1,550 ms
59,636 KB
testcase_05 AC 1,448 ms
59,616 KB
testcase_06 AC 1,509 ms
59,552 KB
testcase_07 AC 1,657 ms
61,016 KB
testcase_08 AC 1,677 ms
60,316 KB
testcase_09 AC 900 ms
49,928 KB
testcase_10 AC 893 ms
52,672 KB
testcase_11 AC 1,761 ms
59,940 KB
testcase_12 AC 1,695 ms
60,900 KB
testcase_13 AC 1,525 ms
58,920 KB
testcase_14 AC 1,498 ms
59,956 KB
testcase_15 AC 1,446 ms
60,196 KB
testcase_16 AC 1,371 ms
60,260 KB
testcase_17 AC 1,904 ms
60,720 KB
testcase_18 AC 1,868 ms
60,996 KB
testcase_19 AC 1,710 ms
61,112 KB
testcase_20 AC 1,544 ms
60,100 KB
testcase_21 AC 1,770 ms
60,724 KB
testcase_22 AC 1,727 ms
61,092 KB
testcase_23 AC 1,628 ms
58,872 KB
testcase_24 AC 1,553 ms
59,688 KB
testcase_25 AC 670 ms
48,788 KB
testcase_26 AC 658 ms
48,272 KB
testcase_27 AC 1,201 ms
60,356 KB
testcase_28 AC 1,176 ms
59,020 KB
testcase_29 AC 1,261 ms
58,756 KB
testcase_30 AC 1,326 ms
58,460 KB
testcase_31 AC 1,511 ms
59,820 KB
testcase_32 AC 1,472 ms
60,632 KB
testcase_33 AC 1,275 ms
58,752 KB
testcase_34 AC 1,255 ms
58,588 KB
testcase_35 AC 1,375 ms
60,200 KB
testcase_36 AC 1,441 ms
59,492 KB
testcase_37 AC 687 ms
48,768 KB
testcase_38 AC 703 ms
48,776 KB
testcase_39 AC 639 ms
48,628 KB
testcase_40 AC 639 ms
48,424 KB
testcase_41 AC 921 ms
52,740 KB
testcase_42 AC 859 ms
52,612 KB
testcase_43 AC 825 ms
49,104 KB
testcase_44 AC 1,871 ms
60,236 KB
testcase_45 AC 1,308 ms
58,960 KB
testcase_46 AC 758 ms
48,816 KB
testcase_47 AC 1,663 ms
60,584 KB
testcase_48 AC 1,592 ms
60,484 KB
testcase_49 AC 1,622 ms
60,656 KB
testcase_50 AC 1,384 ms
59,616 KB
testcase_51 AC 392 ms
48,064 KB
testcase_52 AC 1,712 ms
61,292 KB
testcase_53 AC 1,895 ms
59,256 KB
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 AC 1,982 ms
60,584 KB
testcase_58 AC 1,925 ms
60,576 KB
testcase_59 TLE -
testcase_60 AC 1,905 ms
60,860 KB
testcase_61 TLE -
testcase_62 AC 1,880 ms
61,924 KB
testcase_63 AC 1,950 ms
59,460 KB
testcase_64 AC 1,915 ms
60,796 KB
testcase_65 TLE -
testcase_66 AC 1,935 ms
59,068 KB
testcase_67 AC 1,887 ms
59,376 KB
testcase_68 AC 1,899 ms
59,108 KB
testcase_69 AC 1,955 ms
58,984 KB
testcase_70 AC 1,867 ms
61,848 KB
testcase_71 AC 1,918 ms
61,660 KB
testcase_72 AC 1,895 ms
58,876 KB
testcase_73 AC 1,902 ms
59,440 KB
testcase_74 TLE -
testcase_75 TLE -
testcase_76 TLE -
testcase_77 AC 1,930 ms
61,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Arrays;

public class No1359 {
	
	private static long modpow(long x, long n, long m) {
		long ret = 1;
		while (n > 0) {
			if ((n & 1) != 0) {
				ret = ret * x % m;
			}
			x = x * x % m;
			n >>= 1;
		}
		return ret;
	}
	
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int K = scan.nextInt();
		int M = scan.nextInt();
		int[] P = new int[N];
		for (int i=0; i < N; i++) {
			P[i] = scan.nextInt();
		}
		Arrays.sort(P);
		int[] E = new int[N];
		for (int i=0; i < N; i++) {
			E[i] = scan.nextInt();
		}
		Arrays.sort(E);
		int[] A = new int[N];
		for (int i=0; i < N; i++) {
			A[i] = scan.nextInt();
		}
		Arrays.sort(A);
		int[] H = new int[N];
		for (int i=0; i < N; i++) {
			H[i] = scan.nextInt();
		}
		Arrays.sort(H);
		scan.close();
		long D = 0;
		long min = 0, max = 1;
		for (int i=0; i < N; i++) {	
			int p = P[i];
			int e = E[i];
			min = Math.min(p, e);
			max = Math.max(p, e);
			int a = A[i];
			int h = H[i];
			min = Math.min(min, Math.min(a, h));
			max = Math.max(max, Math.max(a, h)); 
			D = (D + modpow(max - min, (long)K, (long)M)) % M;
		}
		System.out.println(D);
	}
}
0