結果

問題 No.1623 三角形の制作
ユーザー gorugo30gorugo30
提出日時 2021-05-05 22:05:30
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 1,335 bytes
コンパイル時間 1,806 ms
コンパイル使用メモリ 76,984 KB
実行使用メモリ 537,760 KB
最終ジャッジ日時 2024-07-18 16:28:07
合計ジャッジ時間 36,026 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 865 ms
450,000 KB
testcase_01 AC 841 ms
447,988 KB
testcase_02 AC 1,630 ms
453,932 KB
testcase_03 AC 1,660 ms
506,628 KB
testcase_04 MLE -
testcase_05 AC 1,647 ms
460,432 KB
testcase_06 AC 1,460 ms
459,524 KB
testcase_07 AC 1,658 ms
473,072 KB
testcase_08 AC 1,547 ms
448,576 KB
testcase_09 AC 1,668 ms
482,952 KB
testcase_10 AC 1,720 ms
470,028 KB
testcase_11 MLE -
testcase_12 AC 1,432 ms
446,728 KB
testcase_13 AC 1,585 ms
485,192 KB
testcase_14 AC 1,489 ms
447,696 KB
testcase_15 AC 1,672 ms
506,592 KB
testcase_16 MLE -
testcase_17 AC 1,661 ms
494,628 KB
testcase_18 AC 1,674 ms
448,716 KB
testcase_19 AC 1,584 ms
473,112 KB
testcase_20 AC 849 ms
448,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main{
    static int max(int x, int y){
        return x > y ? x : y;
    }
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        int M = 5000;
        int n = sc.nextInt();
        int Rcnt[] = new int[M + 1];
        int Gcnt[] = new int[M + 1];
        int Bcnt[] = new int[M + 1];
        int x;
        for (int i = 0; i < n; i++){
            x = sc.nextInt();
            Rcnt[x]++;
        }
        for (int i = 0; i < n; i++){
            x = sc.nextInt();
            Gcnt[x]++;
        }
        for (int i = 0; i < n; i++){
            x = sc.nextInt();
            Bcnt[x]++;
        }
        
        long C[][] = new long[M + 2][2 * M + 2];
        for (int i = 1; i <= M; i++){
            for (int j = 1; j <= M; j++){
                C[max(i, j) + 1][i + j + 1] += (long)Gcnt[i] * Bcnt[j];
            }
        }
        for (int i = 0; i < M + 1; i++){
            for (int j = 0; j < 2 * M + 1; j++){
                C[i + 1][j + 1] += C[i][j + 1] + C[i + 1][j] - C[i][j];
            }
        }
        long ans = 0;
        for (int i = 1; i <= M; i++){
            long tmp = C[i + 1][2 * M + 1] + C[1][i + 1] - C[i + 1][i + 1] - C[1][2 * M + 1];
            ans += (long)Rcnt[i] * tmp;
        }

        System.out.println(ans);
    }
}
0