結果

問題 No.549 素材合成システム
ユーザー htensaihtensai
提出日時 2019-12-10 09:40:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 790 ms / 2,000 ms
コード長 480 bytes
コンパイル時間 2,548 ms
コンパイル使用メモリ 75,848 KB
実行使用メモリ 62,944 KB
最終ジャッジ日時 2024-06-23 21:56:24
合計ジャッジ時間 27,490 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
52,948 KB
testcase_01 AC 134 ms
54,020 KB
testcase_02 AC 137 ms
54,092 KB
testcase_03 AC 139 ms
54,064 KB
testcase_04 AC 136 ms
53,848 KB
testcase_05 AC 138 ms
54,036 KB
testcase_06 AC 137 ms
53,992 KB
testcase_07 AC 790 ms
61,788 KB
testcase_08 AC 752 ms
61,556 KB
testcase_09 AC 731 ms
61,720 KB
testcase_10 AC 750 ms
62,064 KB
testcase_11 AC 707 ms
62,372 KB
testcase_12 AC 715 ms
61,616 KB
testcase_13 AC 719 ms
61,720 KB
testcase_14 AC 763 ms
62,944 KB
testcase_15 AC 787 ms
62,716 KB
testcase_16 AC 738 ms
61,660 KB
testcase_17 AC 589 ms
59,368 KB
testcase_18 AC 542 ms
59,124 KB
testcase_19 AC 573 ms
59,268 KB
testcase_20 AC 596 ms
59,332 KB
testcase_21 AC 561 ms
61,256 KB
testcase_22 AC 556 ms
61,240 KB
testcase_23 AC 579 ms
61,276 KB
testcase_24 AC 676 ms
62,520 KB
testcase_25 AC 645 ms
61,676 KB
testcase_26 AC 754 ms
61,632 KB
testcase_27 AC 645 ms
61,656 KB
testcase_28 AC 135 ms
53,956 KB
testcase_29 AC 136 ms
54,200 KB
testcase_30 AC 135 ms
54,172 KB
testcase_31 AC 520 ms
58,156 KB
testcase_32 AC 582 ms
59,584 KB
testcase_33 AC 589 ms
59,312 KB
testcase_34 AC 579 ms
59,384 KB
testcase_35 AC 596 ms
62,652 KB
testcase_36 AC 619 ms
59,252 KB
testcase_37 AC 630 ms
59,424 KB
testcase_38 AC 133 ms
54,332 KB
testcase_39 AC 133 ms
54,424 KB
testcase_40 AC 609 ms
59,564 KB
testcase_41 AC 443 ms
59,324 KB
testcase_42 AC 214 ms
57,208 KB
testcase_43 AC 377 ms
59,280 KB
testcase_44 AC 260 ms
57,608 KB
testcase_45 AC 413 ms
59,184 KB
testcase_46 AC 333 ms
59,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        PriorityQueue<Integer> queue = new PriorityQueue<>();
        for (int i = 0; i < n; i++) {
            queue.add(sc.nextInt());
        }
        int sum = 0;
        while (queue.size() > 1) {
            sum += queue.poll() / 2;
        }
        sum += queue.poll();
        System.out.println(sum);
    }
}
0