結果

問題 No.549 素材合成システム
ユーザー tentententen
提出日時 2023-07-27 17:23:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 303 ms / 2,000 ms
コード長 1,758 bytes
コンパイル時間 2,623 ms
コンパイル使用メモリ 91,464 KB
実行使用メモリ 47,100 KB
最終ジャッジ日時 2024-10-04 15:49:37
合計ジャッジ時間 12,810 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
37,304 KB
testcase_01 AC 49 ms
37,268 KB
testcase_02 AC 48 ms
37,324 KB
testcase_03 AC 48 ms
37,252 KB
testcase_04 AC 50 ms
37,296 KB
testcase_05 AC 50 ms
37,076 KB
testcase_06 AC 50 ms
36,972 KB
testcase_07 AC 284 ms
46,724 KB
testcase_08 AC 258 ms
46,788 KB
testcase_09 AC 300 ms
46,592 KB
testcase_10 AC 277 ms
46,776 KB
testcase_11 AC 276 ms
46,856 KB
testcase_12 AC 303 ms
46,876 KB
testcase_13 AC 291 ms
46,896 KB
testcase_14 AC 292 ms
47,008 KB
testcase_15 AC 289 ms
46,880 KB
testcase_16 AC 258 ms
46,932 KB
testcase_17 AC 193 ms
45,532 KB
testcase_18 AC 171 ms
43,984 KB
testcase_19 AC 172 ms
44,564 KB
testcase_20 AC 180 ms
43,848 KB
testcase_21 AC 194 ms
46,548 KB
testcase_22 AC 205 ms
46,808 KB
testcase_23 AC 185 ms
46,084 KB
testcase_24 AC 268 ms
47,100 KB
testcase_25 AC 228 ms
46,660 KB
testcase_26 AC 276 ms
47,016 KB
testcase_27 AC 259 ms
46,892 KB
testcase_28 AC 51 ms
37,048 KB
testcase_29 AC 50 ms
37,048 KB
testcase_30 AC 50 ms
37,156 KB
testcase_31 AC 162 ms
44,644 KB
testcase_32 AC 178 ms
44,640 KB
testcase_33 AC 197 ms
45,396 KB
testcase_34 AC 191 ms
45,568 KB
testcase_35 AC 229 ms
46,640 KB
testcase_36 AC 221 ms
45,260 KB
testcase_37 AC 232 ms
45,104 KB
testcase_38 AC 50 ms
37,340 KB
testcase_39 AC 50 ms
37,276 KB
testcase_40 AC 214 ms
45,232 KB
testcase_41 AC 160 ms
42,208 KB
testcase_42 AC 86 ms
38,540 KB
testcase_43 AC 122 ms
41,744 KB
testcase_44 AC 106 ms
39,196 KB
testcase_45 AC 129 ms
42,848 KB
testcase_46 AC 103 ms
40,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        PriorityQueue<Integer> queue = new PriorityQueue<>();
        for (int i = 0; i < n; i++) {
            queue.add(sc.nextInt());
        }
        long ans = 0;
        while (queue.size() > 1) {
            ans += queue.poll() / 2;
        }
        ans += queue.poll();
        System.out.println(ans);
    }
} 
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0