結果

問題 No.549 素材合成システム
ユーザー ntudantuda
提出日時 2024-02-10 14:01:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 122 bytes
コンパイル時間 396 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 80,772 KB
最終ジャッジ日時 2024-02-10 14:01:54
合計ジャッジ時間 5,017 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,332 KB
testcase_01 AC 36 ms
53,332 KB
testcase_02 AC 35 ms
53,332 KB
testcase_03 AC 32 ms
53,332 KB
testcase_04 AC 33 ms
53,332 KB
testcase_05 AC 33 ms
53,332 KB
testcase_06 AC 33 ms
53,332 KB
testcase_07 AC 72 ms
80,680 KB
testcase_08 AC 71 ms
80,680 KB
testcase_09 AC 72 ms
80,680 KB
testcase_10 AC 71 ms
80,680 KB
testcase_11 AC 71 ms
80,680 KB
testcase_12 AC 71 ms
80,680 KB
testcase_13 AC 71 ms
80,680 KB
testcase_14 AC 70 ms
80,680 KB
testcase_15 AC 70 ms
80,680 KB
testcase_16 AC 71 ms
80,680 KB
testcase_17 AC 52 ms
79,388 KB
testcase_18 AC 48 ms
74,008 KB
testcase_19 AC 54 ms
79,308 KB
testcase_20 AC 51 ms
77,092 KB
testcase_21 AC 53 ms
78,608 KB
testcase_22 AC 53 ms
78,420 KB
testcase_23 AC 55 ms
80,448 KB
testcase_24 AC 68 ms
78,848 KB
testcase_25 AC 63 ms
77,104 KB
testcase_26 AC 70 ms
80,772 KB
testcase_27 AC 66 ms
78,604 KB
testcase_28 AC 33 ms
53,332 KB
testcase_29 AC 33 ms
53,332 KB
testcase_30 AC 33 ms
53,332 KB
testcase_31 AC 53 ms
79,384 KB
testcase_32 AC 52 ms
79,384 KB
testcase_33 AC 52 ms
79,384 KB
testcase_34 AC 53 ms
79,384 KB
testcase_35 AC 55 ms
80,412 KB
testcase_36 AC 56 ms
79,484 KB
testcase_37 AC 56 ms
79,484 KB
testcase_38 AC 39 ms
53,332 KB
testcase_39 AC 34 ms
53,332 KB
testcase_40 AC 57 ms
71,996 KB
testcase_41 AC 44 ms
65,824 KB
testcase_42 AC 37 ms
59,716 KB
testcase_43 AC 42 ms
64,812 KB
testcase_44 AC 37 ms
61,812 KB
testcase_45 AC 44 ms
68,324 KB
testcase_46 AC 39 ms
63,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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