結果

問題 No.549 素材合成システム
ユーザー Amanita2016Amanita2016
提出日時 2017-08-02 12:31:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 415 ms / 2,000 ms
コード長 845 bytes
コンパイル時間 2,960 ms
コンパイル使用メモリ 74,944 KB
実行使用メモリ 53,744 KB
最終ジャッジ日時 2024-10-11 05:49:43
合計ジャッジ時間 17,039 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
40,960 KB
testcase_01 AC 129 ms
41,152 KB
testcase_02 AC 132 ms
41,136 KB
testcase_03 AC 116 ms
39,980 KB
testcase_04 AC 129 ms
40,840 KB
testcase_05 AC 129 ms
41,228 KB
testcase_06 AC 132 ms
41,168 KB
testcase_07 AC 355 ms
51,788 KB
testcase_08 AC 365 ms
51,976 KB
testcase_09 AC 370 ms
51,896 KB
testcase_10 AC 377 ms
51,596 KB
testcase_11 AC 364 ms
51,868 KB
testcase_12 AC 352 ms
51,680 KB
testcase_13 AC 370 ms
51,764 KB
testcase_14 AC 372 ms
51,968 KB
testcase_15 AC 368 ms
51,512 KB
testcase_16 AC 343 ms
51,652 KB
testcase_17 AC 309 ms
51,460 KB
testcase_18 AC 301 ms
51,108 KB
testcase_19 AC 290 ms
51,828 KB
testcase_20 AC 316 ms
51,620 KB
testcase_21 AC 405 ms
53,096 KB
testcase_22 AC 350 ms
51,096 KB
testcase_23 AC 415 ms
53,744 KB
testcase_24 AC 355 ms
50,932 KB
testcase_25 AC 362 ms
51,216 KB
testcase_26 AC 369 ms
51,884 KB
testcase_27 AC 358 ms
50,964 KB
testcase_28 AC 131 ms
41,396 KB
testcase_29 AC 127 ms
40,984 KB
testcase_30 AC 136 ms
41,036 KB
testcase_31 AC 311 ms
51,308 KB
testcase_32 AC 315 ms
51,208 KB
testcase_33 AC 310 ms
51,352 KB
testcase_34 AC 310 ms
51,572 KB
testcase_35 AC 406 ms
53,664 KB
testcase_36 AC 312 ms
51,292 KB
testcase_37 AC 316 ms
51,452 KB
testcase_38 AC 130 ms
40,968 KB
testcase_39 AC 128 ms
41,236 KB
testcase_40 AC 341 ms
50,924 KB
testcase_41 AC 248 ms
44,836 KB
testcase_42 AC 172 ms
41,316 KB
testcase_43 AC 243 ms
47,620 KB
testcase_44 AC 185 ms
42,500 KB
testcase_45 AC 239 ms
47,772 KB
testcase_46 AC 202 ms
44,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class Main {

    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        String line = sc.nextLine();
        line = sc.nextLine();
        String[] spl = line.split(" ");
        
        int exp[] = new int[spl.length];
        int i = 0;
        
        for(String a : spl){
        	exp[i++] = Integer.parseInt(a);
        }
        
        int max = 0;
        for(int a : exp){
        	if(a > max){
        		max = a;
        	}
        }
        
        boolean flg = true;
        int maxExp = 0;
        for(int a : exp){
        	if(a == max && flg){
        		flg = false;
        		maxExp += a;
        	}else{
        		maxExp += a/2;
        	}
        }
        System.out.println(maxExp);
	}
}
0