結果

問題 No.549 素材合成システム
ユーザー tentententen
提出日時 2022-08-02 10:30:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 236 ms / 2,000 ms
コード長 1,191 bytes
コンパイル時間 2,450 ms
コンパイル使用メモリ 78,116 KB
実行使用メモリ 56,828 KB
最終ジャッジ日時 2024-07-23 03:21:23
合計ジャッジ時間 11,417 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
50,532 KB
testcase_01 AC 53 ms
50,480 KB
testcase_02 AC 53 ms
50,516 KB
testcase_03 AC 53 ms
50,552 KB
testcase_04 AC 52 ms
50,496 KB
testcase_05 AC 53 ms
50,184 KB
testcase_06 AC 53 ms
50,308 KB
testcase_07 AC 233 ms
56,676 KB
testcase_08 AC 233 ms
56,780 KB
testcase_09 AC 213 ms
56,388 KB
testcase_10 AC 223 ms
56,652 KB
testcase_11 AC 228 ms
56,620 KB
testcase_12 AC 227 ms
56,656 KB
testcase_13 AC 215 ms
56,740 KB
testcase_14 AC 220 ms
56,828 KB
testcase_15 AC 221 ms
56,740 KB
testcase_16 AC 220 ms
56,696 KB
testcase_17 AC 169 ms
56,324 KB
testcase_18 AC 157 ms
55,956 KB
testcase_19 AC 178 ms
56,372 KB
testcase_20 AC 171 ms
56,252 KB
testcase_21 AC 188 ms
55,664 KB
testcase_22 AC 209 ms
56,200 KB
testcase_23 AC 187 ms
55,860 KB
testcase_24 AC 215 ms
56,512 KB
testcase_25 AC 236 ms
56,612 KB
testcase_26 AC 224 ms
56,664 KB
testcase_27 AC 208 ms
56,444 KB
testcase_28 AC 56 ms
50,528 KB
testcase_29 AC 56 ms
50,280 KB
testcase_30 AC 54 ms
50,176 KB
testcase_31 AC 180 ms
56,172 KB
testcase_32 AC 173 ms
55,556 KB
testcase_33 AC 167 ms
55,788 KB
testcase_34 AC 174 ms
56,328 KB
testcase_35 AC 192 ms
55,736 KB
testcase_36 AC 172 ms
56,276 KB
testcase_37 AC 170 ms
56,328 KB
testcase_38 AC 54 ms
50,480 KB
testcase_39 AC 54 ms
50,588 KB
testcase_40 AC 211 ms
56,264 KB
testcase_41 AC 155 ms
52,816 KB
testcase_42 AC 81 ms
51,592 KB
testcase_43 AC 110 ms
54,208 KB
testcase_44 AC 92 ms
52,012 KB
testcase_45 AC 129 ms
54,676 KB
testcase_46 AC 109 ms
51,852 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();
        int[] values = new int[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
        }
        Arrays.sort(values);
        long ans = 0;
        for (int i = 0; i < n - 1; i++) {
            ans += values[i] / 2;
        }
        System.out.println(ans + values[n - 1]);
    }
}

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 double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0