結果

問題 No.1359 [Zelkova 3rd Tune] 四人セゾン
ユーザー tentententen
提出日時 2021-01-25 09:16:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,833 ms / 2,000 ms
コード長 1,126 bytes
コンパイル時間 5,168 ms
コンパイル使用メモリ 76,800 KB
実行使用メモリ 61,640 KB
最終ジャッジ日時 2024-06-13 00:22:07
合計ジャッジ時間 119,617 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
40,436 KB
testcase_01 AC 106 ms
40,144 KB
testcase_02 AC 140 ms
41,616 KB
testcase_03 AC 1,253 ms
58,784 KB
testcase_04 AC 1,280 ms
58,656 KB
testcase_05 AC 1,207 ms
59,388 KB
testcase_06 AC 1,361 ms
59,024 KB
testcase_07 AC 1,485 ms
60,168 KB
testcase_08 AC 1,496 ms
60,008 KB
testcase_09 AC 877 ms
51,832 KB
testcase_10 AC 880 ms
57,024 KB
testcase_11 AC 1,538 ms
60,120 KB
testcase_12 AC 1,559 ms
59,516 KB
testcase_13 AC 1,333 ms
59,872 KB
testcase_14 AC 1,334 ms
59,400 KB
testcase_15 AC 1,278 ms
59,500 KB
testcase_16 AC 1,236 ms
59,172 KB
testcase_17 AC 1,691 ms
60,412 KB
testcase_18 AC 1,780 ms
59,516 KB
testcase_19 AC 1,361 ms
60,272 KB
testcase_20 AC 1,536 ms
60,608 KB
testcase_21 AC 1,730 ms
60,308 KB
testcase_22 AC 1,570 ms
60,444 KB
testcase_23 AC 1,381 ms
59,640 KB
testcase_24 AC 1,409 ms
60,408 KB
testcase_25 AC 607 ms
48,464 KB
testcase_26 AC 601 ms
48,720 KB
testcase_27 AC 1,175 ms
57,740 KB
testcase_28 AC 1,197 ms
58,556 KB
testcase_29 AC 1,181 ms
58,584 KB
testcase_30 AC 1,132 ms
57,940 KB
testcase_31 AC 1,214 ms
59,596 KB
testcase_32 AC 1,367 ms
59,248 KB
testcase_33 AC 1,144 ms
58,736 KB
testcase_34 AC 1,166 ms
58,588 KB
testcase_35 AC 1,257 ms
59,592 KB
testcase_36 AC 1,207 ms
59,504 KB
testcase_37 AC 651 ms
48,624 KB
testcase_38 AC 655 ms
48,604 KB
testcase_39 AC 620 ms
48,284 KB
testcase_40 AC 576 ms
48,232 KB
testcase_41 AC 865 ms
54,344 KB
testcase_42 AC 792 ms
49,540 KB
testcase_43 AC 737 ms
48,864 KB
testcase_44 AC 1,714 ms
60,204 KB
testcase_45 AC 1,183 ms
58,324 KB
testcase_46 AC 800 ms
48,968 KB
testcase_47 AC 1,480 ms
59,704 KB
testcase_48 AC 1,361 ms
59,964 KB
testcase_49 AC 1,465 ms
59,796 KB
testcase_50 AC 1,371 ms
59,184 KB
testcase_51 AC 357 ms
47,928 KB
testcase_52 AC 1,603 ms
60,748 KB
testcase_53 AC 1,754 ms
60,460 KB
testcase_54 AC 1,800 ms
60,396 KB
testcase_55 AC 1,732 ms
60,216 KB
testcase_56 AC 1,750 ms
60,416 KB
testcase_57 AC 1,814 ms
60,416 KB
testcase_58 AC 1,767 ms
60,384 KB
testcase_59 AC 1,755 ms
60,352 KB
testcase_60 AC 1,759 ms
59,808 KB
testcase_61 AC 1,763 ms
60,320 KB
testcase_62 AC 1,722 ms
60,392 KB
testcase_63 AC 1,757 ms
60,584 KB
testcase_64 AC 1,729 ms
60,392 KB
testcase_65 AC 1,833 ms
60,560 KB
testcase_66 AC 1,729 ms
60,452 KB
testcase_67 AC 1,736 ms
60,216 KB
testcase_68 AC 1,728 ms
61,640 KB
testcase_69 AC 1,693 ms
60,788 KB
testcase_70 AC 1,680 ms
60,576 KB
testcase_71 AC 1,640 ms
60,652 KB
testcase_72 AC 1,731 ms
60,288 KB
testcase_73 AC 1,742 ms
60,724 KB
testcase_74 AC 1,762 ms
60,324 KB
testcase_75 AC 1,779 ms
60,432 KB
testcase_76 AC 1,726 ms
61,448 KB
testcase_77 AC 1,716 ms
60,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int k = sc.nextInt();
        int m = sc.nextInt();
        int[][] rates = new int[4][n];
        for (int i = 0; i < 4; i++) {
            for (int j = 0; j < n; j++) {
                rates[i][j] = sc.nextInt();
            }
            Arrays.sort(rates[i]);
        }
        long ans = 0;
        for (int i = 0; i < n; i++) {
            int min = Integer.MAX_VALUE;
            int max = Integer.MIN_VALUE;
            for (int j = 0; j < 4; j++) {
                min = Math.min(min, rates[j][i]);
                max = Math.max(max, rates[j][i]);
            }
            ans += powmod(max - min, k, m);
            ans %= m;
        }
        System.out.println(ans);
    }
    
    static long powmod(long x, long p, int mod) {
        if (p == 0) {
            return 1;
        } else if (p % 2 == 0) {
            return powmod(x * x % mod, p / 2, mod);
        } else {
            return powmod(x, p - 1, mod) * x % mod;
        }
    }
}
0