結果

問題 No.549 素材合成システム
ユーザー kohei2019kohei2019
提出日時 2022-02-08 21:22:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 128 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 87,104 KB
実行使用メモリ 92,084 KB
最終ジャッジ日時 2023-09-05 21:48:31
合計ジャッジ時間 6,406 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,348 KB
testcase_01 AC 71 ms
71,428 KB
testcase_02 AC 70 ms
71,080 KB
testcase_03 AC 71 ms
71,456 KB
testcase_04 AC 72 ms
71,480 KB
testcase_05 AC 72 ms
71,532 KB
testcase_06 AC 71 ms
71,272 KB
testcase_07 AC 108 ms
91,804 KB
testcase_08 AC 109 ms
91,820 KB
testcase_09 AC 108 ms
91,724 KB
testcase_10 AC 109 ms
91,832 KB
testcase_11 AC 109 ms
92,068 KB
testcase_12 AC 110 ms
91,820 KB
testcase_13 AC 108 ms
91,892 KB
testcase_14 AC 107 ms
91,772 KB
testcase_15 AC 108 ms
91,824 KB
testcase_16 AC 109 ms
91,912 KB
testcase_17 AC 91 ms
90,344 KB
testcase_18 AC 88 ms
87,112 KB
testcase_19 AC 91 ms
90,200 KB
testcase_20 AC 91 ms
90,524 KB
testcase_21 AC 92 ms
89,708 KB
testcase_22 AC 92 ms
89,356 KB
testcase_23 AC 95 ms
91,708 KB
testcase_24 AC 104 ms
90,052 KB
testcase_25 AC 106 ms
88,068 KB
testcase_26 AC 109 ms
92,084 KB
testcase_27 AC 104 ms
89,612 KB
testcase_28 AC 71 ms
71,328 KB
testcase_29 AC 71 ms
71,464 KB
testcase_30 AC 71 ms
71,388 KB
testcase_31 AC 91 ms
90,324 KB
testcase_32 AC 93 ms
90,440 KB
testcase_33 AC 91 ms
90,472 KB
testcase_34 AC 92 ms
90,528 KB
testcase_35 AC 94 ms
91,420 KB
testcase_36 AC 94 ms
90,648 KB
testcase_37 AC 94 ms
90,812 KB
testcase_38 AC 71 ms
71,068 KB
testcase_39 AC 71 ms
71,172 KB
testcase_40 AC 94 ms
84,888 KB
testcase_41 AC 83 ms
78,544 KB
testcase_42 AC 74 ms
76,276 KB
testcase_43 AC 91 ms
79,564 KB
testcase_44 AC 77 ms
76,348 KB
testcase_45 AC 81 ms
80,964 KB
testcase_46 AC 79 ms
77,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
lsx = list(map(int,input().split()))
lsx.sort()

for i in range(N-1):
    lsx[N-1] += lsx[i]//2

print(lsx[-1])
0