結果

問題 No.1623 三角形の制作
ユーザー gorugo30gorugo30
提出日時 2021-05-05 22:13:59
言語 Java21
(openjdk 21)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,435 bytes
コンパイル時間 2,289 ms
コンパイル使用メモリ 77,568 KB
実行使用メモリ 534,944 KB
最終ジャッジ日時 2024-07-18 16:26:47
合計ジャッジ時間 34,377 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 718 ms
455,160 KB
testcase_01 AC 703 ms
455,328 KB
testcase_02 AC 1,738 ms
454,060 KB
testcase_03 AC 1,676 ms
453,580 KB
testcase_04 AC 1,704 ms
454,216 KB
testcase_05 AC 1,765 ms
454,252 KB
testcase_06 AC 1,634 ms
467,036 KB
testcase_07 MLE -
testcase_08 AC 1,632 ms
453,584 KB
testcase_09 AC 1,680 ms
454,140 KB
testcase_10 AC 1,833 ms
454,080 KB
testcase_11 MLE -
testcase_12 MLE -
testcase_13 AC 1,162 ms
466,860 KB
testcase_14 AC 1,152 ms
466,876 KB
testcase_15 AC 1,340 ms
455,764 KB
testcase_16 AC 1,384 ms
486,972 KB
testcase_17 AC 1,401 ms
501,292 KB
testcase_18 MLE -
testcase_19 AC 1,339 ms
505,092 KB
testcase_20 AC 665 ms
455,288 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 = Integer.parseInt(sc.next());
        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 = Integer.parseInt(sc.next());
            Rcnt[x]++;
        }
        for (int i = 0; i < n; i++){
            x = Integer.parseInt(sc.next());
            Gcnt[x]++;
        }
        for (int i = 0; i < n; i++){
            x = Integer.parseInt(sc.next());
            Bcnt[x]++;
        }
        
        long C[][] = new long[M + 2][2 * M + 2];
        for (int i = 1; i <= M; i++){
            if (Gcnt[i] == 0) continue;
            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