結果

問題 No.1564 Sum of Products of Pairs
ユーザー tentententen
提出日時 2021-06-28 15:50:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 359 ms / 2,000 ms
コード長 1,079 bytes
コンパイル時間 2,685 ms
コンパイル使用メモリ 78,820 KB
実行使用メモリ 61,656 KB
最終ジャッジ日時 2024-06-25 12:11:12
合計ジャッジ時間 10,412 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
50,588 KB
testcase_01 AC 61 ms
50,424 KB
testcase_02 AC 58 ms
50,176 KB
testcase_03 AC 234 ms
56,196 KB
testcase_04 AC 127 ms
52,824 KB
testcase_05 AC 269 ms
58,500 KB
testcase_06 AC 237 ms
56,516 KB
testcase_07 AC 227 ms
56,360 KB
testcase_08 AC 173 ms
55,056 KB
testcase_09 AC 230 ms
56,148 KB
testcase_10 AC 278 ms
58,488 KB
testcase_11 AC 298 ms
58,132 KB
testcase_12 AC 272 ms
56,196 KB
testcase_13 AC 60 ms
50,068 KB
testcase_14 AC 60 ms
50,416 KB
testcase_15 AC 61 ms
50,540 KB
testcase_16 AC 61 ms
50,204 KB
testcase_17 AC 61 ms
50,176 KB
testcase_18 AC 336 ms
58,812 KB
testcase_19 AC 331 ms
59,608 KB
testcase_20 AC 339 ms
59,528 KB
testcase_21 AC 344 ms
61,596 KB
testcase_22 AC 351 ms
59,424 KB
testcase_23 AC 359 ms
61,636 KB
testcase_24 AC 343 ms
60,780 KB
testcase_25 AC 337 ms
61,492 KB
testcase_26 AC 352 ms
60,940 KB
testcase_27 AC 338 ms
61,656 KB
testcase_28 AC 58 ms
50,416 KB
testcase_29 AC 58 ms
50,520 KB
testcase_30 AC 58 ms
50,392 KB
testcase_31 AC 63 ms
50,596 KB
testcase_32 AC 58 ms
50,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        long[] arr = new long[n * 2];
        for (int i = 0; i < n * 2; i++) {
            arr[i] = sc.nextInt();
        }
        Arrays.sort(arr);
        long ans = 0;
        for (int i = 0; i < n * 2; i += 2) {
            ans += arr[i] * arr[i + 1];
        }
        System.out.println(ans);
    }
}


class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0