結果

問題 No.549 素材合成システム
ユーザー tentententen
提出日時 2022-10-06 19:24:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 237 ms / 2,000 ms
コード長 1,221 bytes
コンパイル時間 1,892 ms
コンパイル使用メモリ 78,460 KB
実行使用メモリ 45,728 KB
最終ジャッジ日時 2024-06-11 06:35:05
合計ジャッジ時間 10,856 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
37,516 KB
testcase_01 AC 48 ms
37,036 KB
testcase_02 AC 48 ms
37,036 KB
testcase_03 AC 49 ms
37,248 KB
testcase_04 AC 51 ms
37,400 KB
testcase_05 AC 48 ms
37,412 KB
testcase_06 AC 47 ms
37,216 KB
testcase_07 AC 218 ms
45,188 KB
testcase_08 AC 218 ms
45,728 KB
testcase_09 AC 214 ms
45,148 KB
testcase_10 AC 237 ms
45,320 KB
testcase_11 AC 209 ms
45,252 KB
testcase_12 AC 232 ms
45,220 KB
testcase_13 AC 216 ms
45,620 KB
testcase_14 AC 225 ms
45,504 KB
testcase_15 AC 233 ms
45,136 KB
testcase_16 AC 200 ms
45,476 KB
testcase_17 AC 149 ms
44,864 KB
testcase_18 AC 156 ms
43,624 KB
testcase_19 AC 161 ms
45,088 KB
testcase_20 AC 160 ms
44,460 KB
testcase_21 AC 205 ms
44,420 KB
testcase_22 AC 161 ms
44,360 KB
testcase_23 AC 171 ms
45,044 KB
testcase_24 AC 219 ms
45,328 KB
testcase_25 AC 193 ms
44,948 KB
testcase_26 AC 218 ms
45,180 KB
testcase_27 AC 213 ms
44,972 KB
testcase_28 AC 50 ms
37,120 KB
testcase_29 AC 48 ms
37,492 KB
testcase_30 AC 47 ms
37,312 KB
testcase_31 AC 143 ms
45,076 KB
testcase_32 AC 144 ms
45,260 KB
testcase_33 AC 169 ms
45,500 KB
testcase_34 AC 167 ms
45,040 KB
testcase_35 AC 200 ms
44,976 KB
testcase_36 AC 164 ms
45,228 KB
testcase_37 AC 161 ms
45,148 KB
testcase_38 AC 48 ms
37,392 KB
testcase_39 AC 48 ms
37,088 KB
testcase_40 AC 185 ms
44,844 KB
testcase_41 AC 135 ms
41,028 KB
testcase_42 AC 75 ms
38,436 KB
testcase_43 AC 93 ms
41,252 KB
testcase_44 AC 82 ms
39,716 KB
testcase_45 AC 115 ms
41,556 KB
testcase_46 AC 103 ms
40,284 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);
        for (int i = 0; i < n - 1; i++) {
            values[n - 1] += values[i] / 2;
        }
        System.out.println(values[n - 1]);
    }
}
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 String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0