結果

問題 No.549 素材合成システム
ユーザー naimonon77naimonon77
提出日時 2018-02-05 16:43:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 195 bytes
コンパイル時間 102 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,180 KB
最終ジャッジ日時 2024-07-08 01:01:20
合計ジャッジ時間 5,415 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
11,136 KB
testcase_01 AC 29 ms
11,008 KB
testcase_02 AC 30 ms
11,136 KB
testcase_03 AC 30 ms
11,136 KB
testcase_04 AC 31 ms
11,008 KB
testcase_05 AC 30 ms
11,008 KB
testcase_06 AC 30 ms
11,136 KB
testcase_07 AC 108 ms
20,876 KB
testcase_08 AC 106 ms
20,876 KB
testcase_09 AC 107 ms
20,876 KB
testcase_10 AC 110 ms
20,876 KB
testcase_11 AC 110 ms
20,996 KB
testcase_12 AC 108 ms
21,004 KB
testcase_13 AC 106 ms
21,000 KB
testcase_14 AC 107 ms
20,872 KB
testcase_15 AC 107 ms
20,876 KB
testcase_16 AC 112 ms
20,876 KB
testcase_17 AC 66 ms
13,116 KB
testcase_18 AC 58 ms
12,648 KB
testcase_19 AC 64 ms
12,824 KB
testcase_20 AC 64 ms
12,904 KB
testcase_21 AC 79 ms
19,988 KB
testcase_22 AC 77 ms
19,156 KB
testcase_23 AC 87 ms
21,180 KB
testcase_24 AC 101 ms
20,192 KB
testcase_25 AC 92 ms
19,116 KB
testcase_26 AC 107 ms
20,904 KB
testcase_27 AC 97 ms
19,744 KB
testcase_28 AC 33 ms
11,008 KB
testcase_29 AC 32 ms
11,008 KB
testcase_30 AC 32 ms
11,136 KB
testcase_31 AC 68 ms
13,116 KB
testcase_32 AC 72 ms
12,928 KB
testcase_33 AC 67 ms
12,992 KB
testcase_34 AC 66 ms
12,988 KB
testcase_35 AC 81 ms
20,980 KB
testcase_36 AC 70 ms
12,964 KB
testcase_37 AC 69 ms
12,988 KB
testcase_38 AC 31 ms
11,136 KB
testcase_39 AC 32 ms
11,008 KB
testcase_40 AC 76 ms
17,356 KB
testcase_41 AC 50 ms
13,824 KB
testcase_42 AC 34 ms
11,136 KB
testcase_43 AC 43 ms
11,748 KB
testcase_44 AC 34 ms
11,264 KB
testcase_45 AC 47 ms
11,776 KB
testcase_46 AC 40 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import random

MAX = int(1e8)

N = int(input())
x = list(map(int, input().split()))
x = sorted(x)
max_v = x[-1]
x.pop()
x = sorted(x, reverse=True)

for v in x:
    max_v += v // 2

print(max_v)
0