結果

問題 No.549 素材合成システム
ユーザー rlangevinrlangevin
提出日時 2023-01-04 21:25:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 118 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 87,328 KB
実行使用メモリ 90,440 KB
最終ジャッジ日時 2023-08-18 18:21:20
合計ジャッジ時間 7,038 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
71,120 KB
testcase_01 AC 66 ms
71,164 KB
testcase_02 AC 67 ms
71,168 KB
testcase_03 AC 68 ms
71,080 KB
testcase_04 AC 66 ms
71,452 KB
testcase_05 AC 66 ms
71,164 KB
testcase_06 AC 64 ms
71,328 KB
testcase_07 AC 101 ms
90,064 KB
testcase_08 AC 98 ms
90,192 KB
testcase_09 AC 102 ms
90,404 KB
testcase_10 AC 100 ms
90,272 KB
testcase_11 AC 107 ms
90,064 KB
testcase_12 AC 98 ms
90,196 KB
testcase_13 AC 102 ms
90,440 KB
testcase_14 AC 103 ms
90,440 KB
testcase_15 AC 104 ms
90,360 KB
testcase_16 AC 103 ms
90,436 KB
testcase_17 AC 85 ms
88,956 KB
testcase_18 AC 85 ms
85,572 KB
testcase_19 AC 88 ms
88,912 KB
testcase_20 AC 87 ms
88,800 KB
testcase_21 AC 85 ms
88,284 KB
testcase_22 AC 82 ms
88,004 KB
testcase_23 AC 84 ms
89,956 KB
testcase_24 AC 95 ms
88,496 KB
testcase_25 AC 94 ms
86,776 KB
testcase_26 AC 96 ms
90,304 KB
testcase_27 AC 95 ms
88,072 KB
testcase_28 AC 65 ms
71,312 KB
testcase_29 AC 68 ms
71,464 KB
testcase_30 AC 64 ms
71,368 KB
testcase_31 AC 81 ms
88,996 KB
testcase_32 AC 83 ms
89,060 KB
testcase_33 AC 81 ms
88,964 KB
testcase_34 AC 82 ms
88,884 KB
testcase_35 AC 86 ms
89,892 KB
testcase_36 AC 83 ms
88,972 KB
testcase_37 AC 86 ms
89,096 KB
testcase_38 AC 66 ms
71,172 KB
testcase_39 AC 68 ms
71,168 KB
testcase_40 AC 90 ms
84,048 KB
testcase_41 AC 76 ms
78,132 KB
testcase_42 AC 69 ms
76,112 KB
testcase_43 AC 73 ms
78,816 KB
testcase_44 AC 70 ms
76,324 KB
testcase_45 AC 75 ms
80,128 KB
testcase_46 AC 70 ms
77,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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