結果

問題 No.1564 Sum of Products of Pairs
ユーザー AsahiAsahi
提出日時 2023-02-04 19:07:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 778 ms / 2,000 ms
コード長 1,014 bytes
コンパイル時間 2,236 ms
コンパイル使用メモリ 79,292 KB
実行使用メモリ 58,940 KB
最終ジャッジ日時 2024-07-03 15:47:45
合計ジャッジ時間 17,083 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
39,992 KB
testcase_01 AC 116 ms
41,264 KB
testcase_02 AC 101 ms
40,116 KB
testcase_03 AC 560 ms
48,724 KB
testcase_04 AC 253 ms
47,988 KB
testcase_05 AC 653 ms
49,072 KB
testcase_06 AC 583 ms
48,964 KB
testcase_07 AC 445 ms
48,636 KB
testcase_08 AC 344 ms
47,936 KB
testcase_09 AC 508 ms
48,884 KB
testcase_10 AC 569 ms
52,240 KB
testcase_11 AC 671 ms
52,672 KB
testcase_12 AC 563 ms
48,672 KB
testcase_13 AC 109 ms
41,412 KB
testcase_14 AC 108 ms
41,012 KB
testcase_15 AC 102 ms
40,360 KB
testcase_16 AC 100 ms
40,484 KB
testcase_17 AC 119 ms
41,204 KB
testcase_18 AC 709 ms
57,448 KB
testcase_19 AC 727 ms
55,176 KB
testcase_20 AC 732 ms
57,320 KB
testcase_21 AC 755 ms
57,152 KB
testcase_22 AC 679 ms
57,276 KB
testcase_23 AC 715 ms
58,036 KB
testcase_24 AC 735 ms
57,504 KB
testcase_25 AC 727 ms
57,760 KB
testcase_26 AC 696 ms
58,940 KB
testcase_27 AC 778 ms
57,268 KB
testcase_28 AC 101 ms
40,676 KB
testcase_29 AC 112 ms
41,728 KB
testcase_30 AC 116 ms
41,552 KB
testcase_31 AC 112 ms
41,372 KB
testcase_32 AC 110 ms
41,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;
import java.util.stream.Stream;

public class Main{
    /* 入出力 */
    static BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));
    static StringTokenizer st;
    static PrintWriter output = new PrintWriter(System.out);
    static Scanner sc = new Scanner(System.in);
    /* 定数 */
    static final int [] y4 = {0,1,0,-1};
    static final int [] x4 = {1,0,-1,0};
    static final int  INF1 = Integer.MAX_VALUE;
    static final long INF2 = Long.MAX_VALUE;
    static final long MOD1 = (long)1e9+7;
    static final long MOD2 = 998244353;
    /* Main */
    public static void main(String[] args) throws IOException{
        int n = sc.nextInt();
        int [] A = new int[2*n];
        for(int i=0;i<2*n;i++) A[i] = sc.nextInt();
        Arrays.sort(A);
        long ans = 0;
        for(int i=0;i<n;i++) {
            ans += (long)A[2*i]*A[(2*i)+1];
        }
        output.print(ans);
        output.flush();
    }
}
0