結果

問題 No.549 素材合成システム
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2017-07-28 22:47:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 661 ms / 2,000 ms
コード長 429 bytes
コンパイル時間 2,554 ms
コンパイル使用メモリ 74,160 KB
実行使用メモリ 59,748 KB
最終ジャッジ日時 2024-10-10 03:51:06
合計ジャッジ時間 23,838 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,888 KB
testcase_01 AC 126 ms
54,280 KB
testcase_02 AC 124 ms
53,864 KB
testcase_03 AC 124 ms
54,220 KB
testcase_04 AC 126 ms
53,988 KB
testcase_05 AC 125 ms
53,992 KB
testcase_06 AC 127 ms
54,060 KB
testcase_07 AC 626 ms
59,452 KB
testcase_08 AC 558 ms
59,216 KB
testcase_09 AC 561 ms
59,564 KB
testcase_10 AC 609 ms
59,200 KB
testcase_11 AC 612 ms
59,556 KB
testcase_12 AC 633 ms
59,472 KB
testcase_13 AC 622 ms
59,732 KB
testcase_14 AC 631 ms
59,424 KB
testcase_15 AC 585 ms
59,336 KB
testcase_16 AC 661 ms
59,736 KB
testcase_17 AC 539 ms
59,152 KB
testcase_18 AC 486 ms
59,112 KB
testcase_19 AC 520 ms
59,108 KB
testcase_20 AC 486 ms
59,180 KB
testcase_21 AC 468 ms
58,988 KB
testcase_22 AC 485 ms
59,156 KB
testcase_23 AC 504 ms
58,860 KB
testcase_24 AC 589 ms
59,724 KB
testcase_25 AC 596 ms
59,748 KB
testcase_26 AC 623 ms
59,540 KB
testcase_27 AC 515 ms
59,480 KB
testcase_28 AC 125 ms
54,124 KB
testcase_29 AC 113 ms
52,864 KB
testcase_30 AC 126 ms
54,152 KB
testcase_31 AC 466 ms
58,308 KB
testcase_32 AC 537 ms
59,680 KB
testcase_33 AC 478 ms
59,312 KB
testcase_34 AC 529 ms
59,408 KB
testcase_35 AC 508 ms
58,648 KB
testcase_36 AC 541 ms
59,380 KB
testcase_37 AC 538 ms
59,440 KB
testcase_38 AC 118 ms
52,824 KB
testcase_39 AC 128 ms
54,240 KB
testcase_40 AC 552 ms
59,488 KB
testcase_41 AC 391 ms
59,192 KB
testcase_42 AC 198 ms
56,820 KB
testcase_43 AC 346 ms
58,888 KB
testcase_44 AC 231 ms
57,744 KB
testcase_45 AC 388 ms
59,068 KB
testcase_46 AC 301 ms
58,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int [] x = new int [N];
        for(int i=0; i<N; i++){
            x[i] = sc.nextInt();
        }
        Arrays.sort(x);
        int ans = x[N-1];
        for(int i=0; i<N-1; i++){
            ans+=(x[i]/2);
        }
        System.out.println(ans);
    }
}
0