結果

問題 No.549 素材合成システム
ユーザー 37zigen37zigen
提出日時 2020-03-21 19:01:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 586 ms / 2,000 ms
コード長 649 bytes
コンパイル時間 2,337 ms
コンパイル使用メモリ 74,864 KB
実行使用メモリ 48,720 KB
最終ジャッジ日時 2024-06-02 11:38:41
合計ジャッジ時間 22,666 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
40,032 KB
testcase_01 AC 102 ms
40,000 KB
testcase_02 AC 116 ms
41,460 KB
testcase_03 AC 106 ms
40,192 KB
testcase_04 AC 108 ms
40,336 KB
testcase_05 AC 119 ms
41,284 KB
testcase_06 AC 106 ms
40,076 KB
testcase_07 AC 568 ms
48,528 KB
testcase_08 AC 521 ms
48,448 KB
testcase_09 AC 533 ms
48,652 KB
testcase_10 AC 569 ms
48,612 KB
testcase_11 AC 576 ms
48,612 KB
testcase_12 AC 586 ms
48,492 KB
testcase_13 AC 578 ms
48,576 KB
testcase_14 AC 579 ms
48,524 KB
testcase_15 AC 526 ms
48,720 KB
testcase_16 AC 489 ms
48,484 KB
testcase_17 AC 500 ms
48,208 KB
testcase_18 AC 480 ms
48,188 KB
testcase_19 AC 488 ms
48,384 KB
testcase_20 AC 459 ms
48,232 KB
testcase_21 AC 415 ms
46,968 KB
testcase_22 AC 445 ms
47,964 KB
testcase_23 AC 465 ms
48,140 KB
testcase_24 AC 586 ms
48,492 KB
testcase_25 AC 575 ms
48,252 KB
testcase_26 AC 583 ms
48,660 KB
testcase_27 AC 556 ms
48,500 KB
testcase_28 AC 117 ms
41,280 KB
testcase_29 AC 116 ms
41,244 KB
testcase_30 AC 102 ms
39,600 KB
testcase_31 AC 497 ms
48,332 KB
testcase_32 AC 525 ms
48,664 KB
testcase_33 AC 505 ms
48,368 KB
testcase_34 AC 508 ms
48,256 KB
testcase_35 AC 471 ms
48,148 KB
testcase_36 AC 444 ms
48,236 KB
testcase_37 AC 515 ms
48,384 KB
testcase_38 AC 107 ms
40,292 KB
testcase_39 AC 107 ms
40,056 KB
testcase_40 AC 411 ms
47,336 KB
testcase_41 AC 361 ms
47,840 KB
testcase_42 AC 189 ms
43,332 KB
testcase_43 AC 360 ms
48,040 KB
testcase_44 AC 227 ms
46,972 KB
testcase_45 AC 369 ms
48,044 KB
testcase_46 AC 271 ms
47,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.FileNotFoundException;
import java.util.Arrays;
import java.util.Scanner;

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


	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0