結果

問題 No.1564 Sum of Products of Pairs
ユーザー tentententen
提出日時 2024-07-04 16:13:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 348 ms / 2,000 ms
コード長 1,427 bytes
コンパイル時間 2,267 ms
コンパイル使用メモリ 78,996 KB
実行使用メモリ 48,144 KB
最終ジャッジ日時 2024-07-04 16:14:09
合計ジャッジ時間 10,677 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
37,000 KB
testcase_01 AC 53 ms
37,308 KB
testcase_02 AC 54 ms
37,140 KB
testcase_03 AC 256 ms
45,472 KB
testcase_04 AC 122 ms
40,140 KB
testcase_05 AC 252 ms
46,012 KB
testcase_06 AC 257 ms
45,184 KB
testcase_07 AC 214 ms
44,584 KB
testcase_08 AC 164 ms
41,332 KB
testcase_09 AC 217 ms
44,476 KB
testcase_10 AC 255 ms
46,324 KB
testcase_11 AC 275 ms
46,188 KB
testcase_12 AC 230 ms
46,148 KB
testcase_13 AC 53 ms
37,060 KB
testcase_14 AC 53 ms
37,280 KB
testcase_15 AC 55 ms
37,308 KB
testcase_16 AC 55 ms
37,280 KB
testcase_17 AC 54 ms
37,048 KB
testcase_18 AC 348 ms
47,972 KB
testcase_19 AC 333 ms
47,592 KB
testcase_20 AC 325 ms
47,572 KB
testcase_21 AC 344 ms
48,112 KB
testcase_22 AC 331 ms
47,600 KB
testcase_23 AC 343 ms
47,664 KB
testcase_24 AC 332 ms
48,000 KB
testcase_25 AC 339 ms
47,772 KB
testcase_26 AC 342 ms
48,084 KB
testcase_27 AC 331 ms
48,144 KB
testcase_28 AC 53 ms
37,196 KB
testcase_29 AC 53 ms
36,936 KB
testcase_30 AC 52 ms
37,196 KB
testcase_31 AC 52 ms
37,160 KB
testcase_32 AC 54 ms
37,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int[] values = new int[n * 2];
        for (int i = 0; i < n * 2; i++) {
            values[i] = sc.nextInt();
        }
        Arrays.sort(values);
        long ans = 0;
        for (int i = 0; i < n * 2; i += 2) {
            ans += (long)values[i] * values[i + 1];
        }
        System.out.println(ans);
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0