結果

問題 No.549 素材合成システム
ユーザー WatsonWatson
提出日時 2017-07-31 16:04:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 123 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 10,572 KB
実行使用メモリ 19,720 KB
最終ジャッジ日時 2023-08-01 07:58:30
合計ジャッジ時間 4,815 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,732 KB
testcase_01 AC 16 ms
7,824 KB
testcase_02 AC 16 ms
7,904 KB
testcase_03 AC 15 ms
7,768 KB
testcase_04 AC 16 ms
7,740 KB
testcase_05 AC 16 ms
7,740 KB
testcase_06 AC 16 ms
7,688 KB
testcase_07 AC 110 ms
19,504 KB
testcase_08 AC 109 ms
19,508 KB
testcase_09 AC 112 ms
19,720 KB
testcase_10 AC 112 ms
19,716 KB
testcase_11 AC 113 ms
19,572 KB
testcase_12 AC 110 ms
19,696 KB
testcase_13 AC 112 ms
19,692 KB
testcase_14 AC 113 ms
19,592 KB
testcase_15 AC 116 ms
19,568 KB
testcase_16 AC 112 ms
19,716 KB
testcase_17 AC 68 ms
9,836 KB
testcase_18 AC 58 ms
9,308 KB
testcase_19 AC 67 ms
9,768 KB
testcase_20 AC 64 ms
9,660 KB
testcase_21 AC 78 ms
18,468 KB
testcase_22 AC 74 ms
17,232 KB
testcase_23 AC 84 ms
19,564 KB
testcase_24 AC 102 ms
18,372 KB
testcase_25 AC 94 ms
17,188 KB
testcase_26 AC 111 ms
19,176 KB
testcase_27 AC 96 ms
17,524 KB
testcase_28 AC 15 ms
7,728 KB
testcase_29 AC 16 ms
7,784 KB
testcase_30 AC 16 ms
7,744 KB
testcase_31 AC 71 ms
9,840 KB
testcase_32 AC 68 ms
9,944 KB
testcase_33 AC 71 ms
9,788 KB
testcase_34 AC 70 ms
9,976 KB
testcase_35 AC 84 ms
19,564 KB
testcase_36 AC 71 ms
9,836 KB
testcase_37 AC 72 ms
9,876 KB
testcase_38 AC 15 ms
7,736 KB
testcase_39 AC 15 ms
7,868 KB
testcase_40 AC 70 ms
14,920 KB
testcase_41 AC 39 ms
10,928 KB
testcase_42 AC 17 ms
8,164 KB
testcase_43 AC 34 ms
8,832 KB
testcase_44 AC 22 ms
8,304 KB
testcase_45 AC 38 ms
8,848 KB
testcase_46 AC 29 ms
8,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
x = [int(i) for i in input().split()]
x.sort()
for i in range(N-1):
    x[-1] += int(x[i]/2)
print(x[-1])
0