結果

問題 No.1623 三角形の制作
ユーザー gorugo30gorugo30
提出日時 2021-05-05 23:36:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,536 ms / 2,000 ms
コード長 1,335 bytes
コンパイル時間 2,262 ms
コンパイル使用メモリ 77,004 KB
実行使用メモリ 243,960 KB
最終ジャッジ日時 2024-07-18 16:28:51
合計ジャッジ時間 30,272 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 472 ms
234,220 KB
testcase_01 AC 476 ms
234,112 KB
testcase_02 AC 1,405 ms
210,520 KB
testcase_03 AC 1,416 ms
220,760 KB
testcase_04 AC 1,402 ms
235,284 KB
testcase_05 AC 1,536 ms
216,296 KB
testcase_06 AC 1,134 ms
243,960 KB
testcase_07 AC 1,474 ms
219,388 KB
testcase_08 AC 1,117 ms
212,864 KB
testcase_09 AC 1,402 ms
210,784 KB
testcase_10 AC 1,449 ms
206,352 KB
testcase_11 AC 1,446 ms
209,532 KB
testcase_12 AC 1,159 ms
225,180 KB
testcase_13 AC 1,230 ms
239,360 KB
testcase_14 AC 1,240 ms
231,084 KB
testcase_15 AC 1,351 ms
197,320 KB
testcase_16 AC 1,359 ms
200,896 KB
testcase_17 AC 1,366 ms
201,304 KB
testcase_18 AC 1,405 ms
227,976 KB
testcase_19 AC 1,406 ms
240,008 KB
testcase_20 AC 485 ms
223,936 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 = 3000;
        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