結果

問題 No.549 素材合成システム
ユーザー brthyyjpbrthyyjp
提出日時 2021-10-22 13:43:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 125 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 81,544 KB
最終ジャッジ日時 2024-09-22 15:39:00
合計ジャッジ時間 4,585 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,004 KB
testcase_01 AC 37 ms
52,404 KB
testcase_02 AC 37 ms
52,728 KB
testcase_03 AC 37 ms
53,072 KB
testcase_04 AC 37 ms
52,740 KB
testcase_05 AC 36 ms
53,012 KB
testcase_06 AC 38 ms
52,088 KB
testcase_07 AC 75 ms
80,708 KB
testcase_08 AC 76 ms
81,544 KB
testcase_09 AC 76 ms
80,720 KB
testcase_10 AC 80 ms
80,444 KB
testcase_11 AC 75 ms
80,660 KB
testcase_12 AC 75 ms
81,128 KB
testcase_13 AC 75 ms
81,496 KB
testcase_14 AC 76 ms
80,160 KB
testcase_15 AC 77 ms
81,076 KB
testcase_16 AC 75 ms
80,884 KB
testcase_17 AC 57 ms
78,672 KB
testcase_18 AC 54 ms
73,956 KB
testcase_19 AC 56 ms
77,520 KB
testcase_20 AC 56 ms
77,420 KB
testcase_21 AC 56 ms
77,876 KB
testcase_22 AC 57 ms
78,020 KB
testcase_23 AC 60 ms
79,852 KB
testcase_24 AC 71 ms
78,536 KB
testcase_25 AC 68 ms
76,836 KB
testcase_26 AC 76 ms
80,428 KB
testcase_27 AC 71 ms
77,956 KB
testcase_28 AC 38 ms
52,944 KB
testcase_29 AC 37 ms
52,940 KB
testcase_30 AC 37 ms
52,216 KB
testcase_31 AC 57 ms
77,896 KB
testcase_32 AC 58 ms
77,596 KB
testcase_33 AC 57 ms
78,776 KB
testcase_34 AC 57 ms
77,448 KB
testcase_35 AC 60 ms
80,436 KB
testcase_36 AC 61 ms
78,568 KB
testcase_37 AC 63 ms
78,932 KB
testcase_38 AC 37 ms
52,628 KB
testcase_39 AC 37 ms
53,180 KB
testcase_40 AC 62 ms
72,996 KB
testcase_41 AC 51 ms
66,272 KB
testcase_42 AC 40 ms
59,400 KB
testcase_43 AC 45 ms
65,820 KB
testcase_44 AC 43 ms
61,168 KB
testcase_45 AC 48 ms
67,648 KB
testcase_46 AC 44 ms
64,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
X = list(map(int, input().split()))
X.sort()
ans = X[-1]
for i in range(n-1):
    ans += X[i]//2
print(ans)
0