結果

問題 No.549 素材合成システム
ユーザー Mr.FukuMr.Fuku
提出日時 2018-08-11 14:04:11
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 115 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 11,852 KB
実行使用メモリ 21,660 KB
最終ジャッジ日時 2023-10-24 13:53:49
合計ジャッジ時間 5,185 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,140 KB
testcase_01 AC 29 ms
10,140 KB
testcase_02 AC 29 ms
10,140 KB
testcase_03 AC 28 ms
10,140 KB
testcase_04 AC 28 ms
10,140 KB
testcase_05 AC 28 ms
10,140 KB
testcase_06 AC 28 ms
10,140 KB
testcase_07 AC 97 ms
21,656 KB
testcase_08 AC 100 ms
21,656 KB
testcase_09 AC 98 ms
21,656 KB
testcase_10 AC 98 ms
21,652 KB
testcase_11 AC 100 ms
21,656 KB
testcase_12 AC 101 ms
21,656 KB
testcase_13 AC 103 ms
21,656 KB
testcase_14 AC 99 ms
21,652 KB
testcase_15 AC 103 ms
21,656 KB
testcase_16 AC 109 ms
21,656 KB
testcase_17 AC 58 ms
11,936 KB
testcase_18 AC 52 ms
11,404 KB
testcase_19 AC 58 ms
11,696 KB
testcase_20 AC 58 ms
11,668 KB
testcase_21 AC 70 ms
20,424 KB
testcase_22 AC 69 ms
19,376 KB
testcase_23 AC 76 ms
21,656 KB
testcase_24 AC 102 ms
20,512 KB
testcase_25 AC 90 ms
19,284 KB
testcase_26 AC 109 ms
21,192 KB
testcase_27 AC 86 ms
19,480 KB
testcase_28 AC 28 ms
10,140 KB
testcase_29 AC 28 ms
10,140 KB
testcase_30 AC 28 ms
10,140 KB
testcase_31 AC 60 ms
11,936 KB
testcase_32 AC 61 ms
11,936 KB
testcase_33 AC 61 ms
11,936 KB
testcase_34 AC 60 ms
11,936 KB
testcase_35 AC 73 ms
21,660 KB
testcase_36 AC 61 ms
11,936 KB
testcase_37 AC 61 ms
11,936 KB
testcase_38 AC 28 ms
10,140 KB
testcase_39 AC 28 ms
10,140 KB
testcase_40 AC 69 ms
16,844 KB
testcase_41 AC 45 ms
13,024 KB
testcase_42 AC 30 ms
10,356 KB
testcase_43 AC 38 ms
10,784 KB
testcase_44 AC 36 ms
10,240 KB
testcase_45 AC 73 ms
10,800 KB
testcase_46 AC 38 ms
10,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
lst = list(map(int,input().split()))
lst.sort()
m = lst.pop()
for i in lst:
    m += i//2
print(m)
0