結果

問題 No.549 素材合成システム
ユーザー tentententen
提出日時 2024-07-23 11:51:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 313 ms / 2,000 ms
コード長 1,393 bytes
コンパイル時間 5,131 ms
コンパイル使用メモリ 79,068 KB
実行使用メモリ 58,640 KB
最終ジャッジ日時 2024-07-23 11:51:33
合計ジャッジ時間 16,037 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,300 KB
testcase_01 AC 53 ms
50,344 KB
testcase_02 AC 53 ms
50,400 KB
testcase_03 AC 54 ms
50,476 KB
testcase_04 AC 52 ms
50,604 KB
testcase_05 AC 51 ms
50,256 KB
testcase_06 AC 52 ms
50,088 KB
testcase_07 AC 313 ms
56,648 KB
testcase_08 AC 278 ms
56,572 KB
testcase_09 AC 290 ms
56,812 KB
testcase_10 AC 299 ms
56,976 KB
testcase_11 AC 257 ms
56,508 KB
testcase_12 AC 306 ms
56,360 KB
testcase_13 AC 291 ms
56,460 KB
testcase_14 AC 276 ms
56,508 KB
testcase_15 AC 286 ms
56,520 KB
testcase_16 AC 287 ms
56,624 KB
testcase_17 AC 186 ms
57,188 KB
testcase_18 AC 186 ms
56,436 KB
testcase_19 AC 191 ms
56,172 KB
testcase_20 AC 194 ms
56,608 KB
testcase_21 AC 235 ms
56,252 KB
testcase_22 AC 232 ms
58,452 KB
testcase_23 AC 212 ms
56,124 KB
testcase_24 AC 260 ms
58,584 KB
testcase_25 AC 294 ms
58,640 KB
testcase_26 AC 252 ms
56,476 KB
testcase_27 AC 273 ms
56,308 KB
testcase_28 AC 54 ms
50,444 KB
testcase_29 AC 55 ms
49,948 KB
testcase_30 AC 53 ms
50,572 KB
testcase_31 AC 207 ms
56,604 KB
testcase_32 AC 206 ms
56,408 KB
testcase_33 AC 203 ms
56,060 KB
testcase_34 AC 203 ms
56,484 KB
testcase_35 AC 282 ms
56,244 KB
testcase_36 AC 245 ms
56,704 KB
testcase_37 AC 269 ms
56,600 KB
testcase_38 AC 53 ms
50,512 KB
testcase_39 AC 53 ms
50,572 KB
testcase_40 AC 246 ms
56,324 KB
testcase_41 AC 171 ms
54,924 KB
testcase_42 AC 83 ms
51,416 KB
testcase_43 AC 134 ms
54,088 KB
testcase_44 AC 109 ms
52,084 KB
testcase_45 AC 139 ms
55,064 KB
testcase_46 AC 120 ms
52,056 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();
        PriorityQueue<Integer> queue = new PriorityQueue<>();
        while (n-- > 0) {
            queue.add(sc.nextInt());
        }
        int ans = 0;
        while (queue.size() > 1) {
            ans += queue.poll() / 2;
        }
        System.out.println(ans + queue.poll());
    }
}
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