結果

問題 No.549 素材合成システム
ユーザー fumofumofunifumofumofuni
提出日時 2022-05-23 23:21:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 115 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 81,836 KB
実行使用メモリ 81,672 KB
最終ジャッジ日時 2023-10-20 17:46:00
合計ジャッジ時間 4,907 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,364 KB
testcase_01 AC 36 ms
53,364 KB
testcase_02 AC 35 ms
53,364 KB
testcase_03 AC 35 ms
53,364 KB
testcase_04 AC 34 ms
53,364 KB
testcase_05 AC 35 ms
53,364 KB
testcase_06 AC 35 ms
53,364 KB
testcase_07 AC 75 ms
81,592 KB
testcase_08 AC 75 ms
81,592 KB
testcase_09 AC 75 ms
81,592 KB
testcase_10 AC 74 ms
81,592 KB
testcase_11 AC 73 ms
81,592 KB
testcase_12 AC 74 ms
81,592 KB
testcase_13 AC 75 ms
81,592 KB
testcase_14 AC 75 ms
81,592 KB
testcase_15 AC 73 ms
81,592 KB
testcase_16 AC 72 ms
81,592 KB
testcase_17 AC 54 ms
80,208 KB
testcase_18 AC 52 ms
74,748 KB
testcase_19 AC 58 ms
80,096 KB
testcase_20 AC 57 ms
80,024 KB
testcase_21 AC 57 ms
79,384 KB
testcase_22 AC 56 ms
79,240 KB
testcase_23 AC 61 ms
81,328 KB
testcase_24 AC 71 ms
79,684 KB
testcase_25 AC 68 ms
77,876 KB
testcase_26 AC 75 ms
81,672 KB
testcase_27 AC 68 ms
79,344 KB
testcase_28 AC 34 ms
53,364 KB
testcase_29 AC 34 ms
53,364 KB
testcase_30 AC 34 ms
53,364 KB
testcase_31 AC 57 ms
80,208 KB
testcase_32 AC 56 ms
80,208 KB
testcase_33 AC 56 ms
80,208 KB
testcase_34 AC 58 ms
80,208 KB
testcase_35 AC 60 ms
81,292 KB
testcase_36 AC 60 ms
80,404 KB
testcase_37 AC 58 ms
80,404 KB
testcase_38 AC 36 ms
53,364 KB
testcase_39 AC 36 ms
53,364 KB
testcase_40 AC 61 ms
72,524 KB
testcase_41 AC 49 ms
66,080 KB
testcase_42 AC 41 ms
59,816 KB
testcase_43 AC 45 ms
65,220 KB
testcase_44 AC 41 ms
61,864 KB
testcase_45 AC 47 ms
68,680 KB
testcase_46 AC 44 ms
63,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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