結果

問題 No.549 素材合成システム
ユーザー Mcpu3Mcpu3
提出日時 2018-09-02 21:23:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 644 ms / 2,000 ms
コード長 334 bytes
コンパイル時間 2,135 ms
コンパイル使用メモリ 74,320 KB
実行使用メモリ 48,676 KB
最終ジャッジ日時 2024-10-02 11:00:57
合計ジャッジ時間 22,939 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,268 KB
testcase_01 AC 124 ms
41,312 KB
testcase_02 AC 126 ms
40,980 KB
testcase_03 AC 112 ms
40,092 KB
testcase_04 AC 125 ms
41,392 KB
testcase_05 AC 124 ms
41,136 KB
testcase_06 AC 127 ms
41,264 KB
testcase_07 AC 578 ms
48,392 KB
testcase_08 AC 531 ms
48,204 KB
testcase_09 AC 633 ms
48,464 KB
testcase_10 AC 601 ms
48,560 KB
testcase_11 AC 574 ms
48,392 KB
testcase_12 AC 616 ms
48,592 KB
testcase_13 AC 582 ms
48,568 KB
testcase_14 AC 620 ms
48,524 KB
testcase_15 AC 619 ms
48,676 KB
testcase_16 AC 551 ms
48,200 KB
testcase_17 AC 520 ms
48,484 KB
testcase_18 AC 504 ms
48,212 KB
testcase_19 AC 503 ms
48,376 KB
testcase_20 AC 480 ms
48,528 KB
testcase_21 AC 487 ms
48,072 KB
testcase_22 AC 451 ms
47,188 KB
testcase_23 AC 521 ms
48,216 KB
testcase_24 AC 644 ms
48,504 KB
testcase_25 AC 580 ms
48,548 KB
testcase_26 AC 598 ms
48,496 KB
testcase_27 AC 563 ms
48,160 KB
testcase_28 AC 123 ms
41,180 KB
testcase_29 AC 122 ms
41,076 KB
testcase_30 AC 121 ms
41,364 KB
testcase_31 AC 514 ms
48,176 KB
testcase_32 AC 511 ms
48,240 KB
testcase_33 AC 521 ms
48,320 KB
testcase_34 AC 517 ms
48,488 KB
testcase_35 AC 503 ms
48,176 KB
testcase_36 AC 521 ms
48,384 KB
testcase_37 AC 508 ms
48,528 KB
testcase_38 AC 125 ms
41,460 KB
testcase_39 AC 123 ms
41,120 KB
testcase_40 AC 514 ms
48,304 KB
testcase_41 AC 384 ms
48,216 KB
testcase_42 AC 187 ms
42,980 KB
testcase_43 AC 334 ms
47,632 KB
testcase_44 AC 242 ms
47,120 KB
testcase_45 AC 367 ms
47,952 KB
testcase_46 AC 281 ms
47,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

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